| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 }], | 56 }], |
| 57 ], | 57 ], |
| 58 }, # end of cast_crash_unittests | 58 }, # end of cast_crash_unittests |
| 59 { | 59 { |
| 60 'target_name': 'cast_tests', | 60 'target_name': 'cast_tests', |
| 61 'type': 'none', | 61 'type': 'none', |
| 62 'dependencies': [ | 62 'dependencies': [ |
| 63 'cast_test_generator', | 63 'cast_test_generator', |
| 64 ], | 64 ], |
| 65 'conditions': [ | 65 'conditions': [ |
| 66 ['chromecast_branding=="Chrome"', { | 66 ['chromecast_branding_as_chrome==1', { |
| 67 'dependencies': [ | 67 'dependencies': [ |
| 68 'internal/chromecast_internal.gyp:cast_tests_internal', | 68 'internal/chromecast_internal.gyp:cast_tests_internal', |
| 69 ], | 69 ], |
| 70 }], | 70 }], |
| 71 ], | 71 ], |
| 72 }, | 72 }, |
| 73 # This target only depends on targets that generate test binaries. | 73 # This target only depends on targets that generate test binaries. |
| 74 { | 74 { |
| 75 'target_name': 'cast_test_generator', | 75 'target_name': 'cast_test_generator', |
| 76 'type': 'none', | 76 'type': 'none', |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 'variables': { | 210 'variables': { |
| 211 'test_suite_name': 'cast_crash_unittests', | 211 'test_suite_name': 'cast_crash_unittests', |
| 212 }, | 212 }, |
| 213 'includes': ['../build/apk_test.gypi'], | 213 'includes': ['../build/apk_test.gypi'], |
| 214 }, # end of target 'cast_crash_unittests_apk' | 214 }, # end of target 'cast_crash_unittests_apk' |
| 215 { | 215 { |
| 216 'target_name': 'cast_android_tests', | 216 'target_name': 'cast_android_tests', |
| 217 'type': 'none', | 217 'type': 'none', |
| 218 'dependencies': ['cast_android_tests_generator'], | 218 'dependencies': ['cast_android_tests_generator'], |
| 219 'conditions': [ | 219 'conditions': [ |
| 220 ['chromecast_branding=="Chrome"', { | 220 ['chromecast_branding_as_chrome==1', { |
| 221 'dependencies': [ | 221 'dependencies': [ |
| 222 'internal/chromecast_internal.gyp:cast_android_tests_internal', | 222 'internal/chromecast_internal.gyp:cast_android_tests_internal', |
| 223 ], | 223 ], |
| 224 }], | 224 }], |
| 225 ], | 225 ], |
| 226 }, # end of target 'cast_android_tests', | 226 }, # end of target 'cast_android_tests', |
| 227 { | 227 { |
| 228 'target_name': 'cast_android_tests_generator', | 228 'target_name': 'cast_android_tests_generator', |
| 229 'type': 'none', | 229 'type': 'none', |
| 230 'variables': { | 230 'variables': { |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 '-a', '<(test_additional_options)', | 378 '-a', '<(test_additional_options)', |
| 379 'pack_run', | 379 'pack_run', |
| 380 ], | 380 ], |
| 381 } | 381 } |
| 382 ], | 382 ], |
| 383 }, | 383 }, |
| 384 ], # end of targets | 384 ], # end of targets |
| 385 }], | 385 }], |
| 386 ], # end of conditions | 386 ], # end of conditions |
| 387 } | 387 } |
| OLD | NEW |