| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 }, | 89 }, |
| 90 }], | 90 }], |
| 91 ['OS=="win"', { | 91 ['OS=="win"', { |
| 92 'variables': { | 92 'variables': { |
| 93 'command': [ | 93 'command': [ |
| 94 '../test_env.py', | 94 '../test_env.py', |
| 95 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', | 95 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', |
| 96 '--gtest_filter=RemoteDesktopBrowserTest.MANUAL_Launch:RemoteDesktopBr
owserTest.MANUAL_Auth', | 96 '--gtest_filter=RemoteDesktopBrowserTest.MANUAL_Launch:RemoteDesktopBr
owserTest.MANUAL_Auth', |
| 97 '--run-manual', | 97 '--run-manual', |
| 98 '--ui-test-action-timeout=100000', | 98 '--ui-test-action-timeout=100000', |
| 99 '--webapp-unpacked=<(PRODUCT_DIR)/remoting/remoting.webapp.v2', | 99 '--webapp-unpacked=<(PRODUCT_DIR)/remoting/remoting.webapp', |
| 100 '--extension-name=Chromoting', | 100 '--extension-name=Chromoting', |
| 101 '--accounts-file=../../remoting/tools/internal/test_accounts.json', | 101 '--accounts-file=../../remoting/tools/internal/test_accounts.json', |
| 102 '--account-type=gmail', | 102 '--account-type=gmail', |
| 103 ], | 103 ], |
| 104 }, | 104 }, |
| 105 }], | 105 }], |
| 106 ], | 106 ], |
| 107 'includes': [ | 107 'includes': [ |
| 108 '../../base/base.isolate', | 108 '../../base/base.isolate', |
| 109 '../../gin/v8.isolate', | 109 '../../gin/v8.isolate', |
| 110 ], | 110 ], |
| 111 } | 111 } |
| OLD | NEW |