| 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', |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 }], | 68 }], |
| 69 ['OS=="mac"', { | 69 ['OS=="mac"', { |
| 70 'variables': { | 70 'variables': { |
| 71 'files': [ | 71 'files': [ |
| 72 '<(PRODUCT_DIR)/<(mac_product_name).app/', | 72 '<(PRODUCT_DIR)/<(mac_product_name).app/', |
| 73 '<(PRODUCT_DIR)/exif.so', | 73 '<(PRODUCT_DIR)/exif.so', |
| 74 '<(PRODUCT_DIR)/ffmpegsumo.so', | 74 '<(PRODUCT_DIR)/ffmpegsumo.so', |
| 75 ], | 75 ], |
| 76 }, | 76 }, |
| 77 }], | 77 }], |
| 78 ['OS=="mac" or OS=="win"', { | 78 ['OS=="mac"', { |
| 79 'variables': { | 79 'variables': { |
| 80 'command': [ | 80 'command': [ |
| 81 '../test_env.py', | 81 '../test_env.py', |
| 82 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', | 82 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', |
| 83 '--gtest_filter=RemoteDesktopBrowserTest.MANUAL_Launch', | 83 '--gtest_filter=RemoteDesktopBrowserTest.MANUAL_Launch', |
| 84 '--run-manual', | 84 '--run-manual', |
| 85 '--ui-test-action-timeout=100000', | 85 '--ui-test-action-timeout=100000', |
| 86 '--webapp-unpacked=<(PRODUCT_DIR)/remoting/remoting.webapp', | 86 '--webapp-unpacked=<(PRODUCT_DIR)/remoting/remoting.webapp', |
| 87 '--extension-name=Chromoting', | 87 '--extension-name=Chromoting', |
| 88 ], | 88 ], |
| 89 }, | 89 }, |
| 90 }], | 90 }], |
| 91 ['OS=="win"', { |
| 92 'variables': { |
| 93 'command': [ |
| 94 '../test_env.py', |
| 95 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', |
| 96 '--gtest_filter=RemoteDesktopBrowserTest.MANUAL_Launch:RemoteDesktopBr
owserTest.MANUAL_Auth', |
| 97 '--run-manual', |
| 98 '--ui-test-action-timeout=100000', |
| 99 '--webapp-unpacked=<(PRODUCT_DIR)/remoting/remoting.webapp.v2', |
| 100 '--extension-name=Chromoting', |
| 101 '--accounts-file=../../remoting/tools/internal/test_accounts.json', |
| 102 '--account-type=gmail', |
| 103 ], |
| 104 }, |
| 105 }], |
| 91 ], | 106 ], |
| 92 'includes': [ | 107 'includes': [ |
| 93 '../../base/base.isolate', | 108 '../../base/base.isolate', |
| 94 '../../gin/v8.isolate', | 109 '../../gin/v8.isolate', |
| 95 ], | 110 ], |
| 96 } | 111 } |
| OLD | NEW |