| 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 'cast_base', | 14 'cast_base', |
| 15 'cast_crypto', | 15 'cast_crypto', |
| 16 '../base/base.gyp:run_all_unittests', | 16 '../base/base.gyp:run_all_unittests', |
| 17 '../testing/gmock.gyp:gmock', | 17 '../testing/gmock.gyp:gmock', |
| 18 '../testing/gtest.gyp:gtest', | 18 '../testing/gtest.gyp:gtest', |
| 19 ], | 19 ], |
| 20 'sources': [ | 20 'sources': [ |
| 21 'base/bind_to_task_runner_unittest.cc', |
| 21 'base/device_capabilities_impl_unittest.cc', | 22 'base/device_capabilities_impl_unittest.cc', |
| 22 'base/error_codes_unittest.cc', | 23 'base/error_codes_unittest.cc', |
| 23 'base/path_utils_unittest.cc', | 24 'base/path_utils_unittest.cc', |
| 24 'base/process_utils_unittest.cc', | 25 'base/process_utils_unittest.cc', |
| 25 'base/serializers_unittest.cc', | 26 'base/serializers_unittest.cc', |
| 26 'base/system_time_change_notifier_unittest.cc', | 27 'base/system_time_change_notifier_unittest.cc', |
| 27 'crypto/signature_cache_unittest.cc', | 28 'crypto/signature_cache_unittest.cc', |
| 28 ], | 29 ], |
| 29 'conditions': [ | 30 'conditions': [ |
| 30 ['OS == "android"', { | 31 ['OS == "android"', { |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 '-a', '<(test_additional_options)', | 418 '-a', '<(test_additional_options)', |
| 418 'pack_run', | 419 'pack_run', |
| 419 ], | 420 ], |
| 420 } | 421 } |
| 421 ], | 422 ], |
| 422 }, | 423 }, |
| 423 ], # end of targets | 424 ], # end of targets |
| 424 }], | 425 }], |
| 425 ], # end of conditions | 426 ], # end of conditions |
| 426 } | 427 } |
| OLD | NEW |