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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 ], | 131 ], |
132 }, | 132 }, |
133 }], | 133 }], |
134 ['OS=="win"', { | 134 ['OS=="win"', { |
135 'variables': { | 135 'variables': { |
136 'isolate_dependency_tracked': [ | 136 'isolate_dependency_tracked': [ |
137 '../native_client/build/build_nexe.py', | 137 '../native_client/build/build_nexe.py', |
138 '<(PRODUCT_DIR)/chrome_elf.dll', | 138 '<(PRODUCT_DIR)/chrome_elf.dll', |
139 '<(PRODUCT_DIR)/clearkeycdm.dll', | 139 '<(PRODUCT_DIR)/clearkeycdm.dll', |
140 '<(PRODUCT_DIR)/clearkeycdmadapter.dll', | 140 '<(PRODUCT_DIR)/clearkeycdmadapter.dll', |
| 141 '<(PRODUCT_DIR)/mojo_system.dll', |
141 '<(PRODUCT_DIR)/ppapi_tests.dll', | 142 '<(PRODUCT_DIR)/ppapi_tests.dll', |
142 '<(PRODUCT_DIR)/security_tests.dll', | 143 '<(PRODUCT_DIR)/security_tests.dll', |
143 'tools/build/repack_locales.py', | 144 'tools/build/repack_locales.py', |
144 ], | 145 ], |
145 'isolate_dependency_untracked': [ | 146 'isolate_dependency_untracked': [ |
146 '../third_party/npapi/npspy/extern/plugin/', | 147 '../third_party/npapi/npspy/extern/plugin/', |
147 '../third_party/psyco_win32/psyco/', | 148 '../third_party/psyco_win32/psyco/', |
148 ], | 149 ], |
149 }, | 150 }, |
150 }], | 151 }], |
151 ['OS=="win" and libpeer_target_type=="loadable_module"', { | 152 ['OS=="win" and libpeer_target_type=="loadable_module"', { |
152 'variables': { | 153 'variables': { |
153 'isolate_dependency_tracked': [ | 154 'isolate_dependency_tracked': [ |
154 '<(PRODUCT_DIR)/libpeerconnection.dll', | 155 '<(PRODUCT_DIR)/libpeerconnection.dll', |
155 ], | 156 ], |
156 }, | 157 }, |
157 }], | 158 }], |
158 ['chromeos==1', { | 159 ['chromeos==1', { |
159 'variables': { | 160 'variables': { |
160 'isolate_dependency_untracked': [ | 161 'isolate_dependency_untracked': [ |
161 '<(PRODUCT_DIR)/chromevox_test_data/', | 162 '<(PRODUCT_DIR)/chromevox_test_data/', |
162 ], | 163 ], |
163 }, | 164 }, |
164 }], | 165 }], |
165 ], | 166 ], |
166 } | 167 } |
OLD | NEW |