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