Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 { | |
| 5 'includes': [ | |
| 6 'chrome.isolate', | |
| 7 ], | |
| 8 'conditions': [ | |
| 9 # TODO(kbr): add Chrome OS. | |
|
M-A Ruel
2014/01/06 19:45:02
I don't think these todo are useful, OS=="linux" i
Ken Russell (switch to Gerrit)
2014/01/06 23:35:12
OK, I didn't know that. Thanks. I removed them thr
| |
| 10 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', { | |
| 11 'variables': { | |
| 12 'isolate_dependency_tracked': [ | |
|
M-A Ruel
2014/01/06 19:45:02
sort
Ken Russell (switch to Gerrit)
2014/01/06 23:35:12
Done.
| |
| 13 '<(PRODUCT_DIR)/performance_browser_tests<(EXECUTABLE_SUFFIX)', | |
| 14 ], | |
| 15 'isolate_dependency_untracked': [ | |
| 16 'test/data/extensions/api_test/tab_capture/', | |
| 17 ], | |
| 18 'command': [ | |
| 19 '<(PRODUCT_DIR)/performance_browser_tests<(EXECUTABLE_SUFFIX)', | |
| 20 # These arguments were copied from the GPU recipe at | |
| 21 # tools/build/scripts/slave/recipe_modules/gpu/api.py. | |
| 22 '--enable-gpu', | |
| 23 '--test-launcher-jobs=1', | |
| 24 '--test-launcher-print-test-stdio=always', | |
| 25 '--gtest_filter=TabCapturePerformanceTest*', | |
| 26 ], | |
| 27 }, | |
| 28 }], | |
| 29 ], | |
| 30 } | |
| OLD | NEW |