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 'conditions': [ | 5 'conditions': [ |
6 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', { | 6 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', { |
7 'variables': { | 7 'variables': { |
8 'files': [ | 8 'files': [ |
9 '../media/test/data/', | 9 '../media/test/data/', |
10 'test/data/', | 10 'test/data/', |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 ], | 51 ], |
52 }, | 52 }, |
53 }], | 53 }], |
54 ['OS=="linux" and use_ozone==0', { | 54 ['OS=="linux" and use_ozone==0', { |
55 'variables': { | 55 'variables': { |
56 'files': [ | 56 'files': [ |
57 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', | 57 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', |
58 ], | 58 ], |
59 }, | 59 }, |
60 }], | 60 }], |
| 61 ['OS=="linux" and libpeer_target_type=="loadable_module"', { |
| 62 'variables': { |
| 63 'isolate_dependency_tracked': [ |
| 64 '<(PRODUCT_DIR)/lib/libpeerconnection.so', |
| 65 ], |
| 66 }, |
| 67 }], |
61 ['OS=="mac"', { | 68 ['OS=="mac"', { |
62 'variables': { | 69 'variables': { |
63 'command': [ | 70 'command': [ |
64 '../testing/test_env.py', | 71 '../testing/test_env.py', |
65 '<(PRODUCT_DIR)/content_unittests<(EXECUTABLE_SUFFIX)', | 72 '<(PRODUCT_DIR)/content_unittests<(EXECUTABLE_SUFFIX)', |
66 '--brave-new-test-launcher', | 73 '--brave-new-test-launcher', |
67 '--test-launcher-bot-mode', | 74 '--test-launcher-bot-mode', |
68 '--asan=<(asan)', | 75 '--asan=<(asan)', |
69 '--lsan=<(lsan)', | 76 '--lsan=<(lsan)', |
70 ], | 77 ], |
(...skipping 19 matching lines...) Expand all Loading... |
90 ], | 97 ], |
91 }, | 98 }, |
92 }], | 99 }], |
93 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { | 100 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { |
94 'variables': { | 101 'variables': { |
95 'files': [ | 102 'files': [ |
96 '<(PRODUCT_DIR)/content_unittests.exe.pdb', | 103 '<(PRODUCT_DIR)/content_unittests.exe.pdb', |
97 ], | 104 ], |
98 }, | 105 }, |
99 }], | 106 }], |
| 107 ['OS=="win" and libpeer_target_type=="loadable_module"', { |
| 108 'variables': { |
| 109 'isolate_dependency_tracked': [ |
| 110 '<(PRODUCT_DIR)/libpeerconnection.dll', |
| 111 ], |
| 112 }, |
| 113 }], |
100 ], | 114 ], |
101 'includes': [ | 115 'includes': [ |
102 '../base/base.isolate', | 116 '../base/base.isolate', |
103 ], | 117 ], |
104 } | 118 } |
OLD | NEW |