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

Side by Side Diff: build/mac/chrome_mac.croc

Issue 118298: Add unit_tests (Chrome browser unit tests) to Mac/Linux coverage.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 6 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 | « build/linux/chrome_linux.croc ('k') | chrome/chrome.gyp » ('j') | no next file with comments »
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 mac 2 # Crocodile config file for Chromium mac
3 3
4 { 4 {
5 # List of rules, applied in order 5 # List of rules, applied in order
6 'rules' : [ 6 'rules' : [
7 # Files/paths to include. Specify these before the excludes, since rules 7 # Files/paths to include. Specify these before the excludes, since rules
8 # are in order. 8 # are in order.
9 { 9 {
10 'regexp' : '^CHROMIUM/(base|media|net|printing)/', 10 'regexp' : '^CHROMIUM/(base|media|net|printing|chrome|v8|webkit/glue)/',
11 'include' : 1, 11 'include' : 1,
12 }, 12 },
13 # Don't include subversion or mercurial SCM dirs 13 # Don't include subversion or mercurial SCM dirs
14 { 14 {
15 'regexp' : '.*/(\\.svn|\\.hg)/', 15 'regexp' : '.*/(\\.svn|\\.hg)/',
16 'include' : 0, 16 'include' : 0,
17 }, 17 },
18 # Don't include output dirs 18 # Don't include output dirs
19 { 19 {
20 'regexp' : '.*/(Debug|Release|sconsbuild|xcodebuild)/', 20 'regexp' : '.*/(Debug|Release|sconsbuild|xcodebuild)/',
(...skipping 20 matching lines...) Expand all
41 { 41 {
42 'regexp' : '.*\\.m$', 42 'regexp' : '.*\\.m$',
43 'language' : 'ObjC', 43 'language' : 'ObjC',
44 }, 44 },
45 { 45 {
46 'regexp' : '.*\\.mm$', 46 'regexp' : '.*\\.mm$',
47 'language' : 'ObjC++', 47 'language' : 'ObjC++',
48 }, 48 },
49 ], 49 ],
50 } 50 }
OLDNEW
« no previous file with comments | « build/linux/chrome_linux.croc ('k') | chrome/chrome.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698