| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 { | |
| 5 'conditions': [ | |
| 6 ['OS=="linux"', { | |
| 7 'variables': { | |
| 8 'command': [ | |
| 9 './chromoting_test_driver_launcher.py', | |
| 10 '--commands_file', | |
| 11 './chromoting_test_driver_commands_linux.txt', | |
| 12 '--prod_dir', | |
| 13 '<(PRODUCT_DIR)', | |
| 14 '--cfg_file', | |
| 15 '../../remoting/tools/internal/ctd-test-account-host-config.json', | |
| 16 '--me2me_manifest_file', | |
| 17 '<(PRODUCT_DIR)/remoting/com.google.chrome.remote_desktop.json', | |
| 18 '--it2me_manifest_file', | |
| 19 '<(PRODUCT_DIR)/remoting/com.google.chrome.remote_assistance.json', | |
| 20 '--user_profile_dir', | |
| 21 '/tmp/chromoting_test_profile', | |
| 22 ], | |
| 23 'files': [ | |
| 24 './chromoting_test_driver_launcher.py', | |
| 25 './chromoting_test_driver_commands_linux.txt', | |
| 26 './chromoting_test_utilities.py', | |
| 27 '<(PRODUCT_DIR)/chromoting_test_driver', | |
| 28 '<(PRODUCT_DIR)/libosmesa.so', | |
| 29 '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe', | |
| 30 '../../remoting/tools/internal/refresh_tokens.json', | |
| 31 '../../remoting/tools/internal/ctd-test-account-host-config.json', | |
| 32 '../../remoting/host/linux/linux_me2me_host.py', | |
| 33 '<(PRODUCT_DIR)/remoting/com.google.chrome.remote_desktop.json', | |
| 34 '<(PRODUCT_DIR)/remoting/com.google.chrome.remote_assistance.json', | |
| 35 '<(PRODUCT_DIR)/remoting_me2me_host', | |
| 36 '<(PRODUCT_DIR)/remoting-me2me-host.deb', | |
| 37 '<(PRODUCT_DIR)/nacl_helper', | |
| 38 '<(PRODUCT_DIR)/nacl_helper_bootstrap', | |
| 39 '<(PRODUCT_DIR)/pnacl/', | |
| 40 '<(PRODUCT_DIR)/remoting_locales/', | |
| 41 ], | |
| 42 }, | |
| 43 }], | |
| 44 ['OS=="linux" and use_ozone==0', { | |
| 45 'variables': { | |
| 46 'files': [ | |
| 47 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', | |
| 48 ], | |
| 49 }, | |
| 50 }], | |
| 51 ], | |
| 52 'includes': [ | |
| 53 '../../base/base.isolate', | |
| 54 '../../gin/v8.isolate', | |
| 55 ], | |
| 56 } | |
| OLD | NEW |