| 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 { |
| 11 'target_name': 'cast_base_unittests', | 11 'target_name': 'cast_base_unittests', |
| 12 'type': '<(gtest_target_type)', | 12 'type': '<(gtest_target_type)', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 'chromecast.gyp:cast_base', | 14 'chromecast.gyp:cast_base', |
| 15 '../base/base.gyp:run_all_unittests', |
| 15 '../testing/gtest.gyp:gtest', | 16 '../testing/gtest.gyp:gtest', |
| 16 '../testing/gtest.gyp:gtest_main', | |
| 17 ], | 17 ], |
| 18 'sources': [ | 18 'sources': [ |
| 19 'base/serializers_unittest.cc', | 19 'base/serializers_unittest.cc', |
| 20 ], | 20 ], |
| 21 }, | 21 }, |
| 22 { | 22 { |
| 23 'target_name': 'cast_tests', | 23 'target_name': 'cast_tests', |
| 24 'type': 'none', | 24 'type': 'none', |
| 25 'dependencies': [ | 25 'dependencies': [ |
| 26 'cast_test_generator', | 26 'cast_test_generator', |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 'HAS_OUT_OF_PROC_TEST_RUNNER', | 256 'HAS_OUT_OF_PROC_TEST_RUNNER', |
| 257 ], | 257 ], |
| 258 'sources': [ | 258 'sources': [ |
| 259 'browser/test/chromecast_shell_browser_test.cc', | 259 'browser/test/chromecast_shell_browser_test.cc', |
| 260 ], | 260 ], |
| 261 }, | 261 }, |
| 262 ], # end of targets | 262 ], # end of targets |
| 263 }], | 263 }], |
| 264 ], # end of conditions | 264 ], # end of conditions |
| 265 } | 265 } |
| OLD | NEW |