OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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=="android" or OS=="linux" or OS=="mac" or OS=="win"', { | 9 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', { |
10 # This list comes from running: | 10 # This list comes from running: |
(...skipping 18 matching lines...) Expand all Loading... |
29 'isolate_dependency_untracked': [ | 29 'isolate_dependency_untracked': [ |
30 '../build/android/pylib/', | 30 '../build/android/pylib/', |
31 '../build/util/', | 31 '../build/util/', |
32 '../tools/crx_id/', | 32 '../tools/crx_id/', |
33 '../tools/telemetry/', | 33 '../tools/telemetry/', |
34 '../third_party/android_testrunner/', | 34 '../third_party/android_testrunner/', |
35 '../third_party/webpagereplay/', | 35 '../third_party/webpagereplay/', |
36 ], | 36 ], |
37 }, | 37 }, |
38 }], | 38 }], |
39 ['OS=="android" or OS=="linux" or OS=="mac"', { | |
40 'variables': { | |
41 'isolate_dependency_tracked': [ | |
42 '<(PRODUCT_DIR)/bitmaptools.so', | |
43 ], | |
44 }, | |
45 }], | |
46 ['OS=="win"', { | |
47 'variables': { | |
48 'isolate_dependency_tracked': [ | |
49 '<(PRODUCT_DIR)/bitmaptools.pyd', | |
50 ], | |
51 }, | |
52 }], | |
53 ] | 39 ] |
54 } | 40 } |
OLD | NEW |