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