OLD | NEW |
1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 'conditions': [ | 5 'conditions': [ |
6 ['OS=="linux"', { | 6 ['OS=="linux"', { |
7 'variables': { | 7 'variables': { |
8 'command': [ | 8 'command': [ |
9 './browser_tests_launcher.py', | 9 './browser_tests_launcher.py', |
10 '--commands_file', | 10 '--commands_file', |
11 './browser_test_commands_linux.txt', | 11 './browser_test_commands_linux.txt', |
12 '--prod_dir', | 12 '--prod_dir', |
13 '<(PRODUCT_DIR)', | 13 '<(PRODUCT_DIR)', |
14 '--cfg_file', | 14 '--cfg_file', |
15 '../../remoting/tools/internal/test-account-host-config.json', | 15 '../../remoting/tools/internal/test-account-host-config.json', |
16 '--manifest_file', | 16 '--me2me_manifest_file', |
17 '<(PRODUCT_DIR)/remoting/com.google.chrome.remote_desktop.json', | 17 '<(PRODUCT_DIR)/remoting/com.google.chrome.remote_desktop.json', |
| 18 '--it2me_manifest_file', |
| 19 '<(PRODUCT_DIR)/remoting/com.google.chrome.remote_assistance.json', |
18 '--user_profile_dir', | 20 '--user_profile_dir', |
19 '/tmp/chromoting_test_profile', | 21 '/tmp/chromoting_test_profile', |
20 ], | 22 ], |
21 'files': [ | 23 'files': [ |
22 '../xvfb.py', | 24 '../xvfb.py', |
23 './browser_tests_launcher.py', | 25 './browser_tests_launcher.py', |
24 './browser_test_commands_linux.txt', | 26 './browser_test_commands_linux.txt', |
25 '<(PRODUCT_DIR)/libffmpegsumo.so', | 27 '<(PRODUCT_DIR)/libffmpegsumo.so', |
26 '<(PRODUCT_DIR)/libosmesa.so', | 28 '<(PRODUCT_DIR)/libosmesa.so', |
27 '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe', | 29 '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe', |
28 '../../remoting/tools/internal/test-account-host-config.json', | 30 '../../remoting/tools/internal/test-account-host-config.json', |
29 '<(PRODUCT_DIR)/remoting/com.google.chrome.remote_desktop.json', | 31 '<(PRODUCT_DIR)/remoting/com.google.chrome.remote_desktop.json', |
| 32 '<(PRODUCT_DIR)/remoting/com.google.chrome.remote_assistance.json', |
30 ], | 33 ], |
31 }, | 34 }, |
32 }], | 35 }], |
33 ['OS=="linux" and use_ozone==0', { | 36 ['OS=="linux" and use_ozone==0', { |
34 'variables': { | 37 'variables': { |
35 'files': [ | 38 'files': [ |
36 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', | 39 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', |
37 ], | 40 ], |
38 }, | 41 }, |
39 }], | 42 }], |
40 ['OS=="linux" or OS=="mac" or OS=="win"', { | 43 ['OS=="linux" or OS=="mac" or OS=="win"', { |
41 'variables': { | 44 'variables': { |
42 'files': [ | 45 'files': [ |
43 '../test_env.py', | 46 '../test_env.py', |
44 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', | 47 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', |
45 '<(PRODUCT_DIR)/remoting/remoting.webapp/', | 48 '<(PRODUCT_DIR)/remoting/remoting.webapp/', |
46 '<(PRODUCT_DIR)/remoting/remoting.webapp.v2/', | 49 '<(PRODUCT_DIR)/remoting/remoting.webapp.v2/', |
| 50 '<(PRODUCT_DIR)/remoting/browser_test_resources/', |
47 '<(PRODUCT_DIR)/resources.pak', | 51 '<(PRODUCT_DIR)/resources.pak', |
48 '../../remoting/tools/internal/test_accounts.json', | 52 '../../remoting/tools/internal/test_accounts.json', |
49 ], | 53 ], |
50 'read_only': 1, | 54 'read_only': 1, |
51 }, | 55 }, |
52 }], | 56 }], |
53 ['OS=="linux" or OS=="win"', { | 57 ['OS=="linux" or OS=="win"', { |
54 'variables': { | 58 'variables': { |
55 'files': [ | 59 'files': [ |
56 '<(PRODUCT_DIR)/chrome_100_percent.pak', | 60 '<(PRODUCT_DIR)/chrome_100_percent.pak', |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 '--account-type=gmail', | 106 '--account-type=gmail', |
103 ], | 107 ], |
104 }, | 108 }, |
105 }], | 109 }], |
106 ], | 110 ], |
107 'includes': [ | 111 'includes': [ |
108 '../../base/base.isolate', | 112 '../../base/base.isolate', |
109 '../../gin/v8.isolate', | 113 '../../gin/v8.isolate', |
110 ], | 114 ], |
111 } | 115 } |
OLD | NEW |