| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 'files': [ | 73 'files': [ |
| 74 '<(PRODUCT_DIR)/chrome_elf.dll', | 74 '<(PRODUCT_DIR)/chrome_elf.dll', |
| 75 '<(PRODUCT_DIR)/libGLESv2.dll', | 75 '<(PRODUCT_DIR)/libGLESv2.dll', |
| 76 ], | 76 ], |
| 77 }, | 77 }, |
| 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 ], | 84 ], |
| 84 }, | 85 }, |
| 85 }], | 86 }], |
| 86 ['OS=="win"', { | 87 ['OS=="win"', { |
| 87 'variables': { | 88 'variables': { |
| 88 'command': [ | 89 'command': [ |
| 89 '../test_env.py', | 90 '../test_env.py', |
| 90 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', | 91 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', |
| 91 '--gtest_filter=RemoteDesktopBrowserTest.MANUAL_Launch:RemoteDesktopBr
owserTest.MANUAL_Auth', | 92 '--gtest_filter=RemoteDesktopBrowserTest.MANUAL_Launch:RemoteDesktopBr
owserTest.MANUAL_Auth', |
| 92 '--run-manual', | 93 '--run-manual', |
| (...skipping 26 matching lines...) Expand all Loading... |
| 119 '<(PRODUCT_DIR)/kasko.dll', | 120 '<(PRODUCT_DIR)/kasko.dll', |
| 120 ], | 121 ], |
| 121 }, | 122 }, |
| 122 }], | 123 }], |
| 123 ], | 124 ], |
| 124 'includes': [ | 125 'includes': [ |
| 125 '../../base/base.isolate', | 126 '../../base/base.isolate', |
| 126 '../../gin/v8.isolate', | 127 '../../gin/v8.isolate', |
| 127 ], | 128 ], |
| 128 } | 129 } |
| OLD | NEW |