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 '-f', | 10 '-f', |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 }, | 42 }, |
43 }], | 43 }], |
44 ['OS=="linux" or OS=="win"', { | 44 ['OS=="linux" or OS=="win"', { |
45 'variables': { | 45 'variables': { |
46 'files': [ | 46 'files': [ |
47 '<(PRODUCT_DIR)/chrome_100_percent.pak', | 47 '<(PRODUCT_DIR)/chrome_100_percent.pak', |
48 '<(PRODUCT_DIR)/locales/en-US.pak', | 48 '<(PRODUCT_DIR)/locales/en-US.pak', |
49 ], | 49 ], |
50 }, | 50 }, |
51 }], | 51 }], |
| 52 ['OS=="win"', { |
| 53 'variables': { |
| 54 'files': [ |
| 55 '<(PRODUCT_DIR)/chrome_elf.dll', |
| 56 '<(PRODUCT_DIR)/ffmpegsumo.dll', |
| 57 ], |
| 58 }, |
| 59 }], |
| 60 ['OS=="mac"', { |
| 61 'variables': { |
| 62 'files': [ |
| 63 '<(PRODUCT_DIR)/<(mac_product_name).app/', |
| 64 '<(PRODUCT_DIR)/exif.so', |
| 65 '<(PRODUCT_DIR)/ffmpegsumo.so', |
| 66 ], |
| 67 }, |
| 68 }], |
52 ['OS=="mac" or OS=="win"', { | 69 ['OS=="mac" or OS=="win"', { |
53 'variables': { | 70 'variables': { |
54 'command': [ | 71 'command': [ |
55 '../test_env.py', | 72 '../test_env.py', |
56 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', | 73 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', |
57 '--gtest_filter=RemoteDesktopBrowserTest.MANUAL_Launch', | 74 '--gtest_filter=RemoteDesktopBrowserTest.MANUAL_Launch', |
58 '--run-manual', | 75 '--run-manual', |
59 '--ui-test-action-timeout=100000', | 76 '--ui-test-action-timeout=100000', |
60 '--webapp-unpacked=<(PRODUCT_DIR)/remoting/remoting.webapp', | 77 '--webapp-unpacked=<(PRODUCT_DIR)/remoting/remoting.webapp', |
61 '--extension-name=Chromoting', | 78 '--extension-name=Chromoting', |
62 ], | 79 ], |
63 }, | 80 }, |
64 }], | 81 }], |
65 ], | 82 ], |
66 'includes': [ | 83 'includes': [ |
67 '../../base/base.isolate', | 84 '../../base/base.isolate', |
68 ], | 85 ], |
69 } | 86 } |
OLD | NEW |