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 'includes': [ | 5 'includes': [ |
6 'chrome.isolate', | 6 'chrome.isolate', |
7 ], | 7 ], |
8 'conditions': [ | 8 'conditions': [ |
9 ['OS=="linux"', { | 9 ['OS=="linux"', { |
10 'variables': { | 10 'variables': { |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
117 '../testing/test_env.py', | 117 '../testing/test_env.py', |
118 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', | 118 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', |
119 '--test-launcher-bot-mode', | 119 '--test-launcher-bot-mode', |
120 ], | 120 ], |
121 }, | 121 }, |
122 }], | 122 }], |
123 ['OS=="win"', { | 123 ['OS=="win"', { |
124 'variables': { | 124 'variables': { |
125 'isolate_dependency_tracked': [ | 125 'isolate_dependency_tracked': [ |
126 '../native_client/build/build_nexe.py', | 126 '../native_client/build/build_nexe.py', |
127 '../third_party/cygwin/bin/bash.exe', | |
128 '../third_party/cygwin/setup_mount.bat', | |
Nico
2014/01/31 23:25:53
Why was this here? Some fake web server in browser
M-A Ruel
2014/02/04 01:23:51
I don't recall.
| |
129 '<(PRODUCT_DIR)/clearkeycdm.dll', | 127 '<(PRODUCT_DIR)/clearkeycdm.dll', |
130 '<(PRODUCT_DIR)/clearkeycdmadapter.dll', | 128 '<(PRODUCT_DIR)/clearkeycdmadapter.dll', |
131 '<(PRODUCT_DIR)/ppapi_tests.dll', | 129 '<(PRODUCT_DIR)/ppapi_tests.dll', |
132 '<(PRODUCT_DIR)/security_tests.dll', | 130 '<(PRODUCT_DIR)/security_tests.dll', |
133 'tools/build/repack_locales.py', | 131 'tools/build/repack_locales.py', |
134 ], | 132 ], |
135 'isolate_dependency_untracked': [ | 133 'isolate_dependency_untracked': [ |
136 '../third_party/npapi/npspy/extern/plugin/', | 134 '../third_party/npapi/npspy/extern/plugin/', |
137 '../third_party/psyco_win32/psyco/', | 135 '../third_party/psyco_win32/psyco/', |
138 ], | 136 ], |
139 }, | 137 }, |
140 }], | 138 }], |
141 ['chromeos==1', { | 139 ['chromeos==1', { |
142 'variables': { | 140 'variables': { |
143 'isolate_dependency_untracked': [ | 141 'isolate_dependency_untracked': [ |
144 '<(PRODUCT_DIR)/chromevox_test_data/', | 142 '<(PRODUCT_DIR)/chromevox_test_data/', |
145 ], | 143 ], |
146 }, | 144 }, |
147 }], | 145 }], |
148 ], | 146 ], |
149 } | 147 } |
OLD | NEW |