| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. 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 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 }, | 7 }, |
| 8 'targets': [ | 8 'targets': [ |
| 9 { | 9 { |
| 10 'target_name': 'ios_chrome_unittests', | 10 'target_name': 'ios_chrome_unittests', |
| 11 'type': '<(gtest_target_type)', | 11 'type': '<(gtest_target_type)', |
| 12 'dependencies': [ | 12 'dependencies': [ |
| 13 '../../base/base.gyp:base', | 13 '../../base/base.gyp:base', |
| 14 '../../base/base.gyp:test_support_base', | 14 '../../base/base.gyp:test_support_base', |
| 15 '../../net/net.gyp:net_test_support', | 15 '../../net/net.gyp:net_test_support', |
| 16 '../../testing/gmock.gyp:gmock', | 16 '../../testing/gmock.gyp:gmock', |
| 17 '../../testing/gtest.gyp:gtest', | 17 '../../testing/gtest.gyp:gtest', |
| 18 '../../third_party/ocmock/ocmock.gyp:ocmock', | 18 '../../third_party/ocmock/ocmock.gyp:ocmock', |
| 19 '../ios_tests.gyp:test_support_ios', | 19 '../ios_tests.gyp:test_support_ios', |
| 20 '../web/ios_web.gyp:ios_web', | 20 '../web/ios_web.gyp:ios_web', |
| 21 '../web/ios_web.gyp:test_support_ios_web', | 21 '../web/ios_web.gyp:test_support_ios_web', |
| 22 'ios_chrome.gyp:ios_chrome_app', | 22 'ios_chrome.gyp:ios_chrome_app', |
| 23 'ios_chrome.gyp:ios_chrome_browser', | 23 'ios_chrome.gyp:ios_chrome_browser', |
| 24 'ios_chrome.gyp:ios_chrome_common', | 24 'ios_chrome.gyp:ios_chrome_common', |
| 25 'ios_chrome_test_support', | 25 'ios_chrome_test_support', |
| 26 ], | 26 ], |
| 27 'sources': [ | 27 'sources': [ |
| 28 'app/safe_mode_util_unittest.cc', | 28 'app/safe_mode_util_unittest.cc', |
| 29 'browser/chrome_url_util_unittest.mm', |
| 29 'browser/experimental_flags_unittest.mm', | 30 'browser/experimental_flags_unittest.mm', |
| 30 'browser/geolocation/CLLocation+XGeoHeaderTest.mm', | 31 'browser/geolocation/CLLocation+XGeoHeaderTest.mm', |
| 31 'browser/geolocation/location_manager_unittest.mm', | 32 'browser/geolocation/location_manager_unittest.mm', |
| 32 'browser/install_time_util_unittest.mm', | 33 'browser/install_time_util_unittest.mm', |
| 33 'browser/installation_notifier_unittest.mm', | 34 'browser/installation_notifier_unittest.mm', |
| 34 'browser/memory/memory_wedge_unittest.cc', | 35 'browser/memory/memory_wedge_unittest.cc', |
| 35 'browser/net/image_fetcher_unittest.mm', | 36 'browser/net/image_fetcher_unittest.mm', |
| 36 'browser/net/metrics_network_client_unittest.mm', | 37 'browser/net/metrics_network_client_unittest.mm', |
| 37 'browser/net/retryable_url_fetcher_unittest.mm', | 38 'browser/net/retryable_url_fetcher_unittest.mm', |
| 38 'browser/snapshots/snapshot_cache_unittest.mm', | 39 'browser/snapshots/snapshot_cache_unittest.mm', |
| (...skipping 23 matching lines...) Expand all Loading... |
| 62 'browser/net/mock_image_fetcher.mm', | 63 'browser/net/mock_image_fetcher.mm', |
| 63 'test/ios_chrome_unit_test_suite.cc', | 64 'test/ios_chrome_unit_test_suite.cc', |
| 64 'test/ios_chrome_unit_test_suite.h', | 65 'test/ios_chrome_unit_test_suite.h', |
| 65 'test/run_all_unittests.cc', | 66 'test/run_all_unittests.cc', |
| 66 'test/testing_application_context.cc', | 67 'test/testing_application_context.cc', |
| 67 'test/testing_application_context.h', | 68 'test/testing_application_context.h', |
| 68 ], | 69 ], |
| 69 }, | 70 }, |
| 70 ], | 71 ], |
| 71 } | 72 } |
| OLD | NEW |