Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(154)

Side by Side Diff: build/common.croc

Issue 26718002: Remove references to sconsbuild (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | build/landmines.py » ('j') | chrome/test/nacl_test_injection/find_chrome.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 # Crocodile config file for Chromium - settings common to all platforms 2 # Crocodile config file for Chromium - settings common to all platforms
3 # 3 #
4 # This should be speicified before the platform-specific config, for example: 4 # This should be speicified before the platform-specific config, for example:
5 # croc -c chrome_common.croc -c linux/chrome_linux.croc 5 # croc -c chrome_common.croc -c linux/chrome_linux.croc
6 6
7 { 7 {
8 # List of root directories, applied in order 8 # List of root directories, applied in order
9 'roots' : [ 9 'roots' : [
10 # Sub-paths we specifically care about and want to call out 10 # Sub-paths we specifically care about and want to call out
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 'regexp' : '^CHROMIUM/(base|media|net|printing|remoting|chrome|content|web kit/glue|native_client)/', 50 'regexp' : '^CHROMIUM/(base|media|net|printing|remoting|chrome|content|web kit/glue|native_client)/',
51 'include' : 1, 51 'include' : 1,
52 }, 52 },
53 # Don't include subversion or mercurial SCM dirs 53 # Don't include subversion or mercurial SCM dirs
54 { 54 {
55 'regexp' : '.*/(\\.svn|\\.hg)/', 55 'regexp' : '.*/(\\.svn|\\.hg)/',
56 'include' : 0, 56 'include' : 0,
57 }, 57 },
58 # Don't include output dirs 58 # Don't include output dirs
59 { 59 {
60 'regexp' : '.*/(Debug|Release|sconsbuild|out|xcodebuild)/', 60 'regexp' : '.*/(Debug|Release|out|xcodebuild)/',
61 'include' : 0, 61 'include' : 0,
62 }, 62 },
63 # Don't include third-party source 63 # Don't include third-party source
64 { 64 {
65 'regexp' : '.*/third_party/', 65 'regexp' : '.*/third_party/',
66 'include' : 0, 66 'include' : 0,
67 }, 67 },
68 # We don't run the V8 test suite, so we don't care about V8 coverage. 68 # We don't run the V8 test suite, so we don't care about V8 coverage.
69 { 69 {
70 'regexp' : '.*/v8/', 70 'regexp' : '.*/v8/',
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 'format' : '*RESULT PercentCoveredSource: percent_covered_source= %g perce nt', 118 'format' : '*RESULT PercentCoveredSource: percent_covered_source= %g perce nt',
119 'group' : 'source', 119 'group' : 'source',
120 }, 120 },
121 { 121 {
122 'stat' : '100.0 * lines_covered / lines_executable', 122 'stat' : '100.0 * lines_covered / lines_executable',
123 'format' : '*RESULT PercentCoveredTest: percent_covered_test= %g percent', 123 'format' : '*RESULT PercentCoveredTest: percent_covered_test= %g percent',
124 'group' : 'test', 124 'group' : 'test',
125 }, 125 },
126 ], 126 ],
127 } 127 }
OLDNEW
« no previous file with comments | « no previous file | build/landmines.py » ('j') | chrome/test/nacl_test_injection/find_chrome.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698