| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 '<(PRODUCT_DIR)/chrome_100_percent.pak', | 61 '<(PRODUCT_DIR)/chrome_100_percent.pak', |
| 62 '<(PRODUCT_DIR)/locales/en-US.pak', | 62 '<(PRODUCT_DIR)/locales/en-US.pak', |
| 63 ], | 63 ], |
| 64 }, | 64 }, |
| 65 }], | 65 }], |
| 66 ['OS=="win"', { | 66 ['OS=="win"', { |
| 67 'variables': { | 67 'variables': { |
| 68 'files': [ | 68 'files': [ |
| 69 '<(PRODUCT_DIR)/chrome_elf.dll', | 69 '<(PRODUCT_DIR)/chrome_elf.dll', |
| 70 '<(PRODUCT_DIR)/ffmpegsumo.dll', | 70 '<(PRODUCT_DIR)/ffmpegsumo.dll', |
| 71 '<(PRODUCT_DIR)/libglesv2.dll', |
| 71 ], | 72 ], |
| 72 }, | 73 }, |
| 73 }], | 74 }], |
| 74 ['OS=="mac"', { | 75 ['OS=="mac"', { |
| 75 'variables': { | 76 'variables': { |
| 76 'files': [ | 77 'files': [ |
| 77 '<(PRODUCT_DIR)/<(mac_product_name).app/', | 78 '<(PRODUCT_DIR)/<(mac_product_name).app/', |
| 78 '<(PRODUCT_DIR)/exif.so', | 79 '<(PRODUCT_DIR)/exif.so', |
| 79 '<(PRODUCT_DIR)/ffmpegsumo.so', | 80 '<(PRODUCT_DIR)/ffmpegsumo.so', |
| 80 ], | 81 ], |
| (...skipping 13 matching lines...) Expand all Loading... |
| 94 '--account-type=gmail', | 95 '--account-type=gmail', |
| 95 ], | 96 ], |
| 96 }, | 97 }, |
| 97 }], | 98 }], |
| 98 ], | 99 ], |
| 99 'includes': [ | 100 'includes': [ |
| 100 '../../base/base.isolate', | 101 '../../base/base.isolate', |
| 101 '../../gin/v8.isolate', | 102 '../../gin/v8.isolate', |
| 102 ], | 103 ], |
| 103 } | 104 } |
| OLD | NEW |