summaryrefslogtreecommitdiff
path: root/other-licenses/gyp-deps/build/win/chrome_win.croc
diff options
context:
space:
mode:
Diffstat (limited to 'other-licenses/gyp-deps/build/win/chrome_win.croc')
-rw-r--r--other-licenses/gyp-deps/build/win/chrome_win.croc26
1 files changed, 26 insertions, 0 deletions
diff --git a/other-licenses/gyp-deps/build/win/chrome_win.croc b/other-licenses/gyp-deps/build/win/chrome_win.croc
new file mode 100644
index 000000000..e1e3bb76d
--- /dev/null
+++ b/other-licenses/gyp-deps/build/win/chrome_win.croc
@@ -0,0 +1,26 @@
+# -*- python -*-
+# Crocodile config file for Chromium windows
+
+{
+ # List of rules, applied in order
+ 'rules' : [
+ # Specify inclusions before exclusions, since rules are in order.
+
+ # Don't include chromeos, posix, or linux specific files
+ {
+ 'regexp' : '.*(_|/)(chromeos|linux|posix)(\\.|_)',
+ 'include' : 0,
+ },
+ # Don't include ChromeOS dirs
+ {
+ 'regexp' : '.*/chromeos/',
+ 'include' : 0,
+ },
+
+ # Groups
+ {
+ 'regexp' : '.*_test_win\\.',
+ 'group' : 'test',
+ },
+ ],
+}