Skip to content

Commit 2cb7d9f

Browse files
committed
copy chromium build folder for gyp files
1 parent 8e98761 commit 2cb7d9f

667 files changed

Lines changed: 91009 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

build/OWNERS

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
agrieve@chromium.org
2+
dpranke@chromium.org
3+
jbudorick@chromium.org
4+
jochen@chromium.org
5+
scottmg@chromium.org
6+
thakis@chromium.org
7+
brucedawson@chromium.org
8+
9+
per-file mac_toolchain.py=erikchen@chromium.org
10+
per-file mac_toolchain.py=justincohen@chromium.org
11+
per-file package_mac_toolchain.py=erikchen@chromium.org
12+
per-file package_mac_toolchain.py=justincohen@chromium.org

build/PRESUBMIT.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Copyright 2015 The Chromium Authors. All rights reserved.
2+
# Use of this source code is governed by a BSD-style license that can be
3+
# found in the LICENSE file.
4+
5+
6+
def _RunTests(input_api, output_api):
7+
return (input_api.canned_checks.RunUnitTestsInDirectory(
8+
input_api, output_api, '.', whitelist=[r'.+_test.py$']))
9+
10+
11+
def CheckChangeOnUpload(input_api, output_api):
12+
return _RunTests(input_api, output_api)
13+
14+
15+
def CheckChangeOnCommit(input_api, output_api):
16+
return _RunTests(input_api, output_api)

0 commit comments

Comments
 (0)