blob: 8fe9d31f72884d2f73470f3811a44dc634cb9ce0 [file] [log] [blame]
maruel91e9edb2015-07-14 05:39:30 +09001# Copyright 2015 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4{
5 'includes': [
maruel04fb3162015-07-15 07:39:03 +09006 '../base/base.isolate',
maruel91e9edb2015-07-14 05:39:30 +09007 ],
8 'conditions': [
9 ['OS=="win" or OS=="mac" or OS=="linux"', {
10 'variables': {
11 'command': [
12 '../testing/test_env.py',
13 '<(PRODUCT_DIR)/mojo_common_unittests<(EXECUTABLE_SUFFIX)',
14 '--brave-new-test-launcher',
15 '--test-launcher-bot-mode',
16 ],
17 'files': [
18 '../testing/test_env.py',
maruel91e9edb2015-07-14 05:39:30 +090019 ],
20 },
21 }],
22 ['OS=="win"', {
23 'variables': {
24 'files': [
sdefresnee121f27d2015-07-21 05:23:58 +090025 '<(PRODUCT_DIR)/mojo_public_test_support.dll',
maruel91e9edb2015-07-14 05:39:30 +090026 ],
27 },
28 }],
29 ['OS=="linux"', {
30 'variables': {
31 'files': [
sdefresnee121f27d2015-07-21 05:23:58 +090032 '<(PRODUCT_DIR)/lib/libmojo_public_test_support.so',
maruel91e9edb2015-07-14 05:39:30 +090033 ],
34 },
35 }],
36 ['OS=="mac"', {
37 'variables': {
38 'files': [
sdefresnee121f27d2015-07-21 05:23:58 +090039 '<(PRODUCT_DIR)/libmojo_public_test_support.dylib',
maruel91e9edb2015-07-14 05:39:30 +090040 ],
41 },
42 }],
43 ],
44}