| 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 'files': [ | |
| 64 '<(PRODUCT_DIR)/lib/libpeerconnection.so', | |
| 65 ], | |
| 66 }, | |
| 67 }], | |
| 68 ['OS=="mac"', { | 61 ['OS=="mac"', { |
| 69 'variables': { | 62 'variables': { |
| 70 'command': [ | 63 'command': [ |
| 71 '../testing/test_env.py', | 64 '../testing/test_env.py', |
| 72 '<(PRODUCT_DIR)/content_unittests<(EXECUTABLE_SUFFIX)', | 65 '<(PRODUCT_DIR)/content_unittests<(EXECUTABLE_SUFFIX)', |
| 73 '--brave-new-test-launcher', | 66 '--brave-new-test-launcher', |
| 74 '--test-launcher-bot-mode', | 67 '--test-launcher-bot-mode', |
| 75 '--asan=<(asan)', | 68 '--asan=<(asan)', |
| 76 '--lsan=<(lsan)', | 69 '--lsan=<(lsan)', |
| 77 ], | 70 ], |
| (...skipping 19 matching lines...) Expand all Loading... |
| 97 ], | 90 ], |
| 98 }, | 91 }, |
| 99 }], | 92 }], |
| 100 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { | 93 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { |
| 101 'variables': { | 94 'variables': { |
| 102 'files': [ | 95 'files': [ |
| 103 '<(PRODUCT_DIR)/content_unittests.exe.pdb', | 96 '<(PRODUCT_DIR)/content_unittests.exe.pdb', |
| 104 ], | 97 ], |
| 105 }, | 98 }, |
| 106 }], | 99 }], |
| 107 ['OS=="win" and libpeer_target_type=="loadable_module"', { | |
| 108 'variables': { | |
| 109 'files': [ | |
| 110 '<(PRODUCT_DIR)/libpeerconnection.dll', | |
| 111 ], | |
| 112 }, | |
| 113 }], | |
| 114 ], | 100 ], |
| 115 'includes': [ | 101 'includes': [ |
| 116 '../base/base.isolate', | 102 '../base/base.isolate', |
| 117 '../gin/v8.isolate', | 103 '../gin/v8.isolate', |
| 118 ], | 104 ], |
| 119 } | 105 } |
| OLD | NEW |