Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(522)

Side by Side Diff: ios/chrome/browser/web/BUILD.gn

Issue 2756483006: Adds NavigationManager util functions to ios/chrome/browser/web/ (Closed)
Patch Set: changed #include to #import and minor renaming. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ios/chrome/browser/tabs/tab.mm ('k') | ios/chrome/browser/web/navigation_manager_util.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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/web/js_compile.gni") 5 import("//ios/web/js_compile.gni")
6 6
7 source_set("web") { 7 source_set("web") {
8 configs += [ "//build/config/compiler:enable_arc" ] 8 configs += [ "//build/config/compiler:enable_arc" ]
9 sources = [ 9 sources = [
10 "dom_altering_lock.h", 10 "dom_altering_lock.h",
11 "dom_altering_lock.mm", 11 "dom_altering_lock.mm",
12 "navigation_manager_util.h",
13 "navigation_manager_util.mm",
12 "network_activity_indicator_tab_helper.h", 14 "network_activity_indicator_tab_helper.h",
13 "network_activity_indicator_tab_helper.mm", 15 "network_activity_indicator_tab_helper.mm",
14 "repost_form_tab_helper.h", 16 "repost_form_tab_helper.h",
15 "repost_form_tab_helper.mm", 17 "repost_form_tab_helper.mm",
16 ] 18 ]
17 deps = [ 19 deps = [
18 "//base", 20 "//base",
19 "//components/strings", 21 "//components/strings",
20 "//ios/chrome/browser/ui", 22 "//ios/chrome/browser/ui",
21 "//ios/chrome/browser/ui/alert_coordinator:alert_coordinator", 23 "//ios/chrome/browser/ui/alert_coordinator:alert_coordinator",
22 "//ios/chrome/browser/ui/util:util", 24 "//ios/chrome/browser/ui/util:util",
23 "//ios/web", 25 "//ios/web",
26 "//ios/web:web_arc",
24 "//ui/base", 27 "//ui/base",
25 ] 28 ]
26 } 29 }
27 30
28 source_set("unit_tests") { 31 source_set("unit_tests") {
29 configs += [ "//build/config/compiler:enable_arc" ] 32 configs += [ "//build/config/compiler:enable_arc" ]
30 testonly = true 33 testonly = true
31 sources = [ 34 sources = [
35 "navigation_manager_util_unittest.mm",
32 "network_activity_indicator_tab_helper_unittest.mm", 36 "network_activity_indicator_tab_helper_unittest.mm",
33 "repost_form_tab_helper_unittest.mm", 37 "repost_form_tab_helper_unittest.mm",
34 ] 38 ]
35 deps = [ 39 deps = [
36 ":web", 40 ":web",
37 "//base:base", 41 "//base:base",
38 "//base/test:test_support", 42 "//base/test:test_support",
39 "//components/strings:components_strings_grit", 43 "//components/strings:components_strings_grit",
40 "//ios/chrome/browser/ui:ui", 44 "//ios/chrome/browser/ui:ui",
41 "//ios/chrome/test:test_support", 45 "//ios/chrome/test:test_support",
42 "//ios/web:test_support", 46 "//ios/web:test_support",
47 "//ios/web:web_arc",
43 "//testing/gtest", 48 "//testing/gtest",
44 "//ui/base:base", 49 "//ui/base:base",
50 "//url:url",
45 ] 51 ]
46 } 52 }
47 53
48 bundle_data("resources") { 54 bundle_data("resources") {
49 sources = [ 55 sources = [
50 "resources/autofill_card_american_express.png", 56 "resources/autofill_card_american_express.png",
51 "resources/autofill_card_american_express@2x.png", 57 "resources/autofill_card_american_express@2x.png",
52 "resources/autofill_card_american_express@2x~ipad.png", 58 "resources/autofill_card_american_express@2x~ipad.png",
53 "resources/autofill_card_american_express@3x.png", 59 "resources/autofill_card_american_express@3x.png",
54 "resources/autofill_card_american_express~ipad.png", 60 "resources/autofill_card_american_express~ipad.png",
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 "early_page_script_perftest.mm", 306 "early_page_script_perftest.mm",
301 ] 307 ]
302 deps = [ 308 deps = [
303 "//base", 309 "//base",
304 "//ios/chrome/test/base:perf_test_support", 310 "//ios/chrome/test/base:perf_test_support",
305 "//ios/web", 311 "//ios/web",
306 "//ios/web:test_support", 312 "//ios/web:test_support",
307 ] 313 ]
308 libs = [ "WebKit.framework" ] 314 libs = [ "WebKit.framework" ]
309 } 315 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/tabs/tab.mm ('k') | ios/chrome/browser/web/navigation_manager_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698