OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 { | 4 { |
5 'conditions': [ | 5 'conditions': [ |
6 ['use_x11==0', { | 6 ['use_x11==0', { |
7 'variables': { | 7 'variables': { |
8 'command': [ | 8 'command': [ |
9 '../testing/test_env.py', | 9 '../testing/test_env.py', |
10 '<(PRODUCT_DIR)/unit_tests<(EXECUTABLE_SUFFIX)', | 10 '<(PRODUCT_DIR)/unit_tests<(EXECUTABLE_SUFFIX)', |
(...skipping 16 matching lines...) Expand all Loading... |
27 '--asan=<(asan)', | 27 '--asan=<(asan)', |
28 '--msan=<(msan)', | 28 '--msan=<(msan)', |
29 '--tsan=<(tsan)', | 29 '--tsan=<(tsan)', |
30 ], | 30 ], |
31 'files': [ | 31 'files': [ |
32 '../testing/xvfb.py', | 32 '../testing/xvfb.py', |
33 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', | 33 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', |
34 ], | 34 ], |
35 }, | 35 }, |
36 }], | 36 }], |
37 ['OS=="android" or OS=="linux" or OS=="win" or OS=="mac"', { | |
38 'variables': { | |
39 'files': [ | |
40 '<(PRODUCT_DIR)/test_data/chrome/browser/resources/google_now/', | |
41 '<(PRODUCT_DIR)/test_data/chrome/browser/resources/print_preview/', | |
42 '<(PRODUCT_DIR)/test_data/chrome/renderer/resources/extensions/', | |
43 '<(PRODUCT_DIR)/test_data/chrome/test/data/unit/', | |
44 '<(PRODUCT_DIR)/test_data/ui/webui/', | |
45 ], | |
46 }, | |
47 }], | |
48 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', { | 37 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', { |
49 'variables': { | 38 'variables': { |
50 'files': [ | 39 'files': [ |
51 '../base/test/data/', | 40 '../base/test/data/', |
52 '../components/test/data/', | 41 '../components/test/data/', |
53 '../extensions/test/data/', | 42 '../extensions/test/data/', |
54 '../google_apis/test/data/', | 43 '../google_apis/test/data/', |
55 '../net/data/', | 44 '../net/data/', |
56 '../third_party/accessibility-audit/axs_testing.js', | 45 '../third_party/accessibility-audit/axs_testing.js', |
57 '../third_party/chaijs/chai.js', | 46 '../third_party/chaijs/chai.js', |
(...skipping 24 matching lines...) Expand all Loading... |
82 }], | 71 }], |
83 ['OS=="linux" or OS=="mac" or OS=="win"', { | 72 ['OS=="linux" or OS=="mac" or OS=="win"', { |
84 'variables': { | 73 'variables': { |
85 'files': [ | 74 'files': [ |
86 '../net/tools/testserver/', | 75 '../net/tools/testserver/', |
87 '../testing/test_env.py', | 76 '../testing/test_env.py', |
88 '../third_party/pyftpdlib/', | 77 '../third_party/pyftpdlib/', |
89 '../third_party/pywebsocket/', | 78 '../third_party/pywebsocket/', |
90 '../third_party/tlslite/', | 79 '../third_party/tlslite/', |
91 '<(PRODUCT_DIR)/pyproto/google/', | 80 '<(PRODUCT_DIR)/pyproto/google/', |
| 81 '<(PRODUCT_DIR)/test_data/chrome/browser/resources/google_now/', |
| 82 '<(PRODUCT_DIR)/test_data/chrome/browser/resources/md_downloads/', |
| 83 '<(PRODUCT_DIR)/test_data/chrome/browser/resources/print_preview/', |
| 84 '<(PRODUCT_DIR)/test_data/chrome/renderer/resources/extensions/', |
| 85 '<(PRODUCT_DIR)/test_data/chrome/test/data/unit/', |
| 86 '<(PRODUCT_DIR)/test_data/ui/webui/', |
92 ], | 87 ], |
93 }, | 88 }, |
94 }], | 89 }], |
95 ['OS=="linux" or OS=="mac"', { | 90 ['OS=="linux" or OS=="mac"', { |
96 'variables': { | 91 'variables': { |
97 'read_only': 1, | 92 'read_only': 1, |
98 }, | 93 }, |
99 }], | 94 }], |
100 ['OS=="mac"', { | 95 ['OS=="mac"', { |
101 'variables': { | 96 'variables': { |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 ], | 154 ], |
160 }, | 155 }, |
161 }], | 156 }], |
162 ], | 157 ], |
163 'includes': [ | 158 'includes': [ |
164 '../base/base.isolate', | 159 '../base/base.isolate', |
165 '../gin/v8.isolate', | 160 '../gin/v8.isolate', |
166 '../ui/gl/gl.isolate', | 161 '../ui/gl/gl.isolate', |
167 ], | 162 ], |
168 } | 163 } |
OLD | NEW |