| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 '../gin/v8.isolate', |
| 7 '../mojo/mojo.isolate', |
| 6 '../third_party/icu/icu.isolate', | 8 '../third_party/icu/icu.isolate', |
| 7 ], | 9 ], |
| 8 'conditions': [ | 10 'conditions': [ |
| 9 ['OS=="win" or OS=="mac" or OS=="linux"', { | 11 ['OS=="win" or OS=="mac" or OS=="linux"', { |
| 10 'variables': { | 12 'variables': { |
| 11 'command': [ | 13 'command': [ |
| 12 '../testing/test_env.py', | 14 '../testing/test_env.py', |
| 13 '<(PRODUCT_DIR)/mojo_js_unittests<(EXECUTABLE_SUFFIX)', | 15 '<(PRODUCT_DIR)/mojo_js_unittests<(EXECUTABLE_SUFFIX)', |
| 14 '--brave-new-test-launcher', | 16 '--brave-new-test-launcher', |
| 15 '--test-launcher-bot-mode', | 17 '--test-launcher-bot-mode', |
| 16 ], | 18 ], |
| 17 'files': [ | 19 'files': [ |
| 18 '../gin/test/expect.js', | 20 '../gin/test/expect.js', |
| 19 '../testing/test_env.py', | 21 '../testing/test_env.py', |
| 20 '<(PRODUCT_DIR)/gen/mojo/public/interfaces/bindings/tests/', | 22 'public/interfaces/bindings/tests/data/validation/', |
| 21 'bindings/js/', | 23 'public/js/', |
| 22 'public/js/bindings/', | 24 '<(PRODUCT_DIR)/gen/mojo/public/interfaces/bindings/tests/math_calcula
tor.mojom.js', |
| 25 '<(PRODUCT_DIR)/gen/mojo/public/interfaces/bindings/tests/no_module.mo
jom.js', |
| 26 '<(PRODUCT_DIR)/gen/mojo/public/interfaces/bindings/tests/ping_service
.mojom.js', |
| 27 '<(PRODUCT_DIR)/gen/mojo/public/interfaces/bindings/tests/rect.mojom.j
s', |
| 28 '<(PRODUCT_DIR)/gen/mojo/public/interfaces/bindings/tests/regression_t
ests.mojom.js', |
| 29 '<(PRODUCT_DIR)/gen/mojo/public/interfaces/bindings/tests/sample_facto
ry.mojom.js', |
| 30 '<(PRODUCT_DIR)/gen/mojo/public/interfaces/bindings/tests/sample_impor
t.mojom.js', |
| 31 '<(PRODUCT_DIR)/gen/mojo/public/interfaces/bindings/tests/sample_impor
t2.mojom.js', |
| 32 '<(PRODUCT_DIR)/gen/mojo/public/interfaces/bindings/tests/sample_inter
faces.mojom.js', |
| 33 '<(PRODUCT_DIR)/gen/mojo/public/interfaces/bindings/tests/sample_servi
ce.mojom.js', |
| 34 '<(PRODUCT_DIR)/gen/mojo/public/interfaces/bindings/tests/scoping.mojo
m.js', |
| 35 '<(PRODUCT_DIR)/gen/mojo/public/interfaces/bindings/tests/serializatio
n_test_structs.mojom.js', |
| 36 '<(PRODUCT_DIR)/gen/mojo/public/interfaces/bindings/tests/test_constan
ts.mojom.js', |
| 37 '<(PRODUCT_DIR)/gen/mojo/public/interfaces/bindings/tests/test_native_
types.mojom.js', |
| 38 '<(PRODUCT_DIR)/gen/mojo/public/interfaces/bindings/tests/test_structs
.mojom.js', |
| 39 '<(PRODUCT_DIR)/gen/mojo/public/interfaces/bindings/tests/test_sync_me
thods.mojom.js', |
| 40 '<(PRODUCT_DIR)/gen/mojo/public/interfaces/bindings/tests/test_unions.
mojom.js', |
| 41 '<(PRODUCT_DIR)/gen/mojo/public/interfaces/bindings/tests/validation_t
est_interfaces.mojom.js', |
| 23 ], | 42 ], |
| 24 }, | 43 }, |
| 25 }], | 44 }], |
| 26 ['OS=="win"', { | |
| 27 'variables': { | |
| 28 'files': [ | |
| 29 '<(PRODUCT_DIR)/mojo_public_test_support.dll', | |
| 30 ], | |
| 31 }, | |
| 32 }], | |
| 33 ['OS=="linux"', { | |
| 34 'variables': { | |
| 35 'files': [ | |
| 36 '<(PRODUCT_DIR)/lib/libmojo_public_test_support.so', | |
| 37 ], | |
| 38 }, | |
| 39 }], | |
| 40 ['OS=="mac"', { | |
| 41 'variables': { | |
| 42 'files': [ | |
| 43 '<(PRODUCT_DIR)/libmojo_public_test_support.dylib', | |
| 44 ], | |
| 45 }, | |
| 46 }], | |
| 47 ], | 45 ], |
| 48 } | 46 } |
| OLD | NEW |