| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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_web_unittests', | 10 'target_name': 'ios_web_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:run_all_unittests', | 14 '../../base/base.gyp:run_all_unittests', |
| 15 '../../base/base.gyp:test_support_base', | 15 '../../base/base.gyp:test_support_base', |
| 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 '../../ui/base/ui_base.gyp:ui_base_test_support', |
| 19 '../testing/ios_testing.gyp:ocmock_support', | 20 '../testing/ios_testing.gyp:ocmock_support', |
| 20 'ios_web.gyp:ios_web', | 21 'ios_web.gyp:ios_web', |
| 21 'ios_web.gyp:test_support_ios_web', | 22 'ios_web.gyp:test_support_ios_web', |
| 22 ], | 23 ], |
| 23 'sources': [ | 24 'sources': [ |
| 24 'alloc_with_zone_interceptor_unittest.mm', | 25 'alloc_with_zone_interceptor_unittest.mm', |
| 25 'browser_state_unittest.cc', | 26 'browser_state_unittest.cc', |
| 26 'crw_network_activity_indicator_manager_unittest.mm', | 27 'crw_network_activity_indicator_manager_unittest.mm', |
| 27 'history_state_util_unittest.mm', | 28 'history_state_util_unittest.mm', |
| 28 'navigation/navigation_item_impl_unittest.mm', | 29 'navigation/navigation_item_impl_unittest.mm', |
| 29 'navigation/nscoder_util_unittest.mm', | 30 'navigation/nscoder_util_unittest.mm', |
| 30 'net/cert_policy_unittest.cc', | 31 'net/cert_policy_unittest.cc', |
| 31 'net/clients/crw_js_injection_network_client_unittest.mm', | 32 'net/clients/crw_js_injection_network_client_unittest.mm', |
| 32 'net/clients/crw_passkit_network_client_unittest.mm', | 33 'net/clients/crw_passkit_network_client_unittest.mm', |
| 33 'net/request_group_util_unittest.mm', | 34 'net/request_group_util_unittest.mm', |
| 34 'net/request_tracker_impl_unittest.mm', | 35 'net/request_tracker_impl_unittest.mm', |
| 35 'net/web_http_protocol_handler_delegate_unittest.mm', | 36 'net/web_http_protocol_handler_delegate_unittest.mm', |
| 36 'public/referrer_util_unittest.cc', | 37 'public/referrer_util_unittest.cc', |
| 37 'public/test/http_server_unittest.mm', | 38 'public/test/http_server_unittest.mm', |
| 38 'string_util_unittest.cc', | 39 'string_util_unittest.cc', |
| 39 'ui_web_view_util_unittest.mm', | 40 'ui_web_view_util_unittest.mm', |
| 40 'url_scheme_util_unittest.mm', | 41 'url_scheme_util_unittest.mm', |
| 41 'url_util_unittest.cc', | 42 'url_util_unittest.cc', |
| 42 'weak_nsobject_counter_unittest.mm', | 43 'weak_nsobject_counter_unittest.mm', |
| 43 'web_state/ui/crw_static_file_web_view_unittest.mm', | 44 'web_state/ui/crw_static_file_web_view_unittest.mm', |
| 45 'webui/crw_web_ui_page_builder_unittest.mm', |
| 46 'webui/url_fetcher_block_adapter_unittest.mm', |
| 44 ], | 47 ], |
| 45 'actions': [ | 48 'actions': [ |
| 46 { | 49 { |
| 47 'action_name': 'copy_test_data', | 50 'action_name': 'copy_test_data', |
| 48 'variables': { | 51 'variables': { |
| 49 'test_data_files': [ | 52 'test_data_files': [ |
| 50 'test/data/chrome.html', | 53 'test/data/chrome.html', |
| 51 'test/data/testbadpass.pkpass', | 54 'test/data/testbadpass.pkpass', |
| 52 'test/data/testfavicon.png', | 55 'test/data/testfavicon.png', |
| 53 'test/data/testpass.pkpass', | 56 'test/data/testpass.pkpass', |
| 54 ], | 57 ], |
| 55 'test_data_prefix': 'ios/web', | 58 'test_data_prefix': 'ios/web', |
| 56 }, | 59 }, |
| 57 'includes': [ '../../build/copy_test_data_ios.gypi' ], | 60 'includes': [ '../../build/copy_test_data_ios.gypi' ], |
| 58 }, | 61 }, |
| 59 ], | 62 ], |
| 60 }, | 63 }, |
| 61 ], | 64 ], |
| 62 } | 65 } |
| OLD | NEW |