| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import("//ios/build/config.gni") | 5 import("//ios/build/config.gni") |
| 6 import("//ios/web/js_compile.gni") | 6 import("//ios/web/js_compile.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
| 9 | 9 |
| 10 group("all_tests") { | 10 group("all_tests") { |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 "//ui/base", | 32 "//ui/base", |
| 33 "//ui/gfx", | 33 "//ui/gfx", |
| 34 "//ui/gfx/geometry:geometry", | 34 "//ui/gfx/geometry:geometry", |
| 35 "//ui/resources", | 35 "//ui/resources", |
| 36 "//url", | 36 "//url", |
| 37 ] | 37 ] |
| 38 | 38 |
| 39 sources = [ | 39 sources = [ |
| 40 "active_state_manager_impl.h", | 40 "active_state_manager_impl.h", |
| 41 "active_state_manager_impl.mm", | 41 "active_state_manager_impl.mm", |
| 42 "alloc_with_zone_interceptor.h", | |
| 43 "alloc_with_zone_interceptor.mm", | |
| 44 "browser_state.mm", | 42 "browser_state.mm", |
| 45 "browser_url_rewriter_impl.h", | 43 "browser_url_rewriter_impl.h", |
| 46 "browser_url_rewriter_impl.mm", | 44 "browser_url_rewriter_impl.mm", |
| 47 "interstitials/html_web_interstitial_impl.h", | 45 "interstitials/html_web_interstitial_impl.h", |
| 48 "interstitials/html_web_interstitial_impl.mm", | 46 "interstitials/html_web_interstitial_impl.mm", |
| 49 "interstitials/native_web_interstitial_impl.h", | 47 "interstitials/native_web_interstitial_impl.h", |
| 50 "interstitials/native_web_interstitial_impl.mm", | 48 "interstitials/native_web_interstitial_impl.mm", |
| 51 "interstitials/web_interstitial_facade_delegate.h", | 49 "interstitials/web_interstitial_facade_delegate.h", |
| 52 "interstitials/web_interstitial_impl.h", | 50 "interstitials/web_interstitial_impl.h", |
| 53 "interstitials/web_interstitial_impl.mm", | 51 "interstitials/web_interstitial_impl.mm", |
| (...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 498 "//net:test_support", | 496 "//net:test_support", |
| 499 "//services/service_manager/public/cpp", | 497 "//services/service_manager/public/cpp", |
| 500 "//testing/gmock", | 498 "//testing/gmock", |
| 501 "//testing/gtest", | 499 "//testing/gtest", |
| 502 "//third_party/ocmock", | 500 "//third_party/ocmock", |
| 503 "//ui/base:test_support", | 501 "//ui/base:test_support", |
| 504 ] | 502 ] |
| 505 | 503 |
| 506 sources = [ | 504 sources = [ |
| 507 "active_state_manager_impl_unittest.mm", | 505 "active_state_manager_impl_unittest.mm", |
| 508 "alloc_with_zone_interceptor_unittest.mm", | |
| 509 "browser_state_unittest.cc", | 506 "browser_state_unittest.cc", |
| 510 "history_state_util_unittest.mm", | 507 "history_state_util_unittest.mm", |
| 511 "navigation/crw_session_controller_unittest.mm", | 508 "navigation/crw_session_controller_unittest.mm", |
| 512 "navigation/crw_session_entry_unittest.mm", | 509 "navigation/crw_session_entry_unittest.mm", |
| 513 "navigation/navigation_item_impl_unittest.mm", | 510 "navigation/navigation_item_impl_unittest.mm", |
| 514 "navigation/navigation_manager_impl_unittest.mm", | 511 "navigation/navigation_manager_impl_unittest.mm", |
| 515 "navigation/nscoder_util_unittest.mm", | 512 "navigation/nscoder_util_unittest.mm", |
| 516 "net/cert_host_pair_unittest.cc", | 513 "net/cert_host_pair_unittest.cc", |
| 517 "net/cert_policy_unittest.cc", | 514 "net/cert_policy_unittest.cc", |
| 518 "net/clients/crw_js_injection_network_client_unittest.mm", | 515 "net/clients/crw_js_injection_network_client_unittest.mm", |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 628 } | 625 } |
| 629 | 626 |
| 630 grit("resources") { | 627 grit("resources") { |
| 631 source = "ios_web_resources.grd" | 628 source = "ios_web_resources.grd" |
| 632 use_qualified_include = true | 629 use_qualified_include = true |
| 633 outputs = [ | 630 outputs = [ |
| 634 "grit/ios_web_resources.h", | 631 "grit/ios_web_resources.h", |
| 635 "ios_web_resources.pak", | 632 "ios_web_resources.pak", |
| 636 ] | 633 ] |
| 637 } | 634 } |
| OLD | NEW |