| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 }], | 78 }], |
| 79 ['OS=="mac"', { | 79 ['OS=="mac"', { |
| 80 'variables': { | 80 'variables': { |
| 81 'files': [ | 81 'files': [ |
| 82 '<(PRODUCT_DIR)/<(mac_product_name).app/', | 82 '<(PRODUCT_DIR)/<(mac_product_name).app/', |
| 83 '<(PRODUCT_DIR)/exif.so', | 83 '<(PRODUCT_DIR)/exif.so', |
| 84 '<(PRODUCT_DIR)/ffmpegsumo.so', | 84 '<(PRODUCT_DIR)/ffmpegsumo.so', |
| 85 ], | 85 ], |
| 86 }, | 86 }, |
| 87 }], | 87 }], |
| 88 ['OS=="win" or OS=="mac"', { | 88 ['OS=="win"', { |
| 89 'variables': { | 89 'variables': { |
| 90 'command': [ | 90 'command': [ |
| 91 '../test_env.py', | 91 '../test_env.py', |
| 92 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', | 92 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', |
| 93 '--gtest_filter=RemoteDesktopBrowserTest.MANUAL_Launch:RemoteDesktopBr
owserTest.MANUAL_Auth', | 93 '--gtest_filter=RemoteDesktopBrowserTest.MANUAL_Launch:RemoteDesktopBr
owserTest.MANUAL_Auth', |
| 94 '--run-manual', | 94 '--run-manual', |
| 95 '--ui-test-action-timeout=100000', | 95 '--ui-test-action-timeout=100000', |
| 96 '--webapp-unpacked=<(PRODUCT_DIR)/remoting/remoting.webapp.v2', | 96 '--webapp-unpacked=<(PRODUCT_DIR)/remoting/remoting.webapp.v2', |
| 97 '--extension-name=Chromoting', | 97 '--extension-name=Chromoting', |
| 98 '--accounts-file=../../remoting/tools/internal/test_accounts.json', | 98 '--accounts-file=../../remoting/tools/internal/test_accounts.json', |
| 99 '--account-type=gmail', | 99 '--account-type=gmail', |
| 100 ], | 100 ], |
| 101 }, | 101 }, |
| 102 }], | 102 }], |
| 103 ['OS=="mac"', { |
| 104 'variables': { |
| 105 'command': [ |
| 106 '../test_env.py', |
| 107 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', |
| 108 '--gtest_filter=RemoteDesktopBrowserTest.MANUAL_Launch', |
| 109 '--run-manual', |
| 110 '--ui-test-action-timeout=100000', |
| 111 '--webapp-unpacked=<(PRODUCT_DIR)/remoting/remoting.webapp.v2', |
| 112 '--extension-name=Chromoting', |
| 113 '--accounts-file=../../remoting/tools/internal/test_accounts.json', |
| 114 '--account-type=gmail', |
| 115 ], |
| 116 }, |
| 117 }], |
| 118 ['OS=="win" and kasko==1', { |
| 119 'variables': { |
| 120 'files': [ |
| 121 '<(PRODUCT_DIR)/kasko.dll', |
| 122 ], |
| 123 }, |
| 124 }], |
| 103 ], | 125 ], |
| 104 'includes': [ | 126 'includes': [ |
| 105 '../../base/base.isolate', | 127 '../../base/base.isolate', |
| 106 '../../gin/v8.isolate', | 128 '../../gin/v8.isolate', |
| 107 ], | 129 ], |
| 108 } | 130 } |
| OLD | NEW |