| OLD | NEW |
| 1 # Copyright (c) 2014 Google Inc. All Rights Reserved. | 1 # Copyright (c) 2014 Google Inc. 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1 | 7 'chromium_code': 1 |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 # GN target: //chromecast:cast_test_lists | 380 # GN target: //chromecast:cast_test_lists |
| 381 { | 381 { |
| 382 'target_name': 'cast_test_lists', | 382 'target_name': 'cast_test_lists', |
| 383 'type': 'none', | 383 'type': 'none', |
| 384 'dependencies': [ | 384 'dependencies': [ |
| 385 'cast_tests', | 385 'cast_tests', |
| 386 ], | 386 ], |
| 387 'variables': { | 387 'variables': { |
| 388 'test_generator_py': '<(DEPTH)/chromecast/tools/build/generate_test_
lists.py', | 388 'test_generator_py': '<(DEPTH)/chromecast/tools/build/generate_test_
lists.py', |
| 389 'test_inputs_dir': '<(SHARED_INTERMEDIATE_DIR)/chromecast/tests', | 389 'test_inputs_dir': '<(SHARED_INTERMEDIATE_DIR)/chromecast/tests', |
| 390 'test_additional_options': '--ozone-platform=test' | 390 'test_additional_options': '--ozone-platform=headless' |
| 391 }, | 391 }, |
| 392 'actions': [ | 392 'actions': [ |
| 393 { | 393 { |
| 394 'action_name': 'generate_combined_test_build_list', | 394 'action_name': 'generate_combined_test_build_list', |
| 395 'message': 'Generating combined test build list', | 395 'message': 'Generating combined test build list', |
| 396 'inputs': ['<(test_generator_py)'], | 396 'inputs': ['<(test_generator_py)'], |
| 397 'outputs': ['<(PRODUCT_DIR)/tests/build_test_list.txt'], | 397 'outputs': ['<(PRODUCT_DIR)/tests/build_test_list.txt'], |
| 398 'action': [ | 398 'action': [ |
| 399 'python', '<(test_generator_py)', | 399 'python', '<(test_generator_py)', |
| 400 '-t', '<(test_inputs_dir)', | 400 '-t', '<(test_inputs_dir)', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 414 '-a', '<(test_additional_options)', | 414 '-a', '<(test_additional_options)', |
| 415 'pack_run', | 415 'pack_run', |
| 416 ], | 416 ], |
| 417 } | 417 } |
| 418 ], | 418 ], |
| 419 }, | 419 }, |
| 420 ], # end of targets | 420 ], # end of targets |
| 421 }], | 421 }], |
| 422 ], # end of conditions | 422 ], # end of conditions |
| 423 } | 423 } |
| OLD | NEW |