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

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

Issue 2642463002: Implemented FormResubmissionTabHelper. (Closed)
Patch Set: Moved FormResubmissionTabHelper::CreateForWebState to init Created 3 years, 11 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
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 "form_resubmission_tab_helper.h",
13 "form_resubmission_tab_helper.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 ] 16 ]
15 deps = [ 17 deps = [
16 "//base", 18 "//base",
17 "//components/strings", 19 "//components/strings",
18 "//ios/chrome/browser/ui", 20 "//ios/chrome/browser/ui",
21 "//ios/chrome/browser/ui/alert_coordinator:alert_coordinator",
22 "//ios/chrome/browser/ui/util:util",
19 "//ios/web", 23 "//ios/web",
20 "//ui/base", 24 "//ui/base",
21 ] 25 ]
22 } 26 }
23 27
24 source_set("unit_tests") { 28 source_set("unit_tests") {
25 configs += [ "//build/config/compiler:enable_arc" ] 29 configs += [ "//build/config/compiler:enable_arc" ]
26 testonly = true 30 testonly = true
27 sources = [ 31 sources = [
32 "form_resubmission_tab_helper_unittest.mm",
28 "network_activity_indicator_tab_helper_unittest.mm", 33 "network_activity_indicator_tab_helper_unittest.mm",
29 ] 34 ]
30 deps = [ 35 deps = [
31 ":web", 36 ":web",
37 "//base:base",
38 "//base/test:test_support",
39 "//components/strings:components_strings_grit",
40 "//ios/chrome/browser/ui:ui",
41 "//ios/chrome/test:test_support",
32 "//ios/web:test_support", 42 "//ios/web:test_support",
33 "//testing/gtest", 43 "//testing/gtest",
44 "//ui/base:base",
34 ] 45 ]
35 } 46 }
36 47
37 bundle_data("resources") { 48 bundle_data("resources") {
38 sources = [ 49 sources = [
39 "resources/autofill_card_american_express.png", 50 "resources/autofill_card_american_express.png",
40 "resources/autofill_card_american_express@2x.png", 51 "resources/autofill_card_american_express@2x.png",
41 "resources/autofill_card_american_express@2x~ipad.png", 52 "resources/autofill_card_american_express@2x~ipad.png",
42 "resources/autofill_card_american_express@3x.png", 53 "resources/autofill_card_american_express@3x.png",
43 "resources/autofill_card_american_express~ipad.png", 54 "resources/autofill_card_american_express~ipad.png",
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 "early_page_script_perftest.mm", 293 "early_page_script_perftest.mm",
283 ] 294 ]
284 deps = [ 295 deps = [
285 "//base", 296 "//base",
286 "//ios/chrome/test/base:perf_test_support", 297 "//ios/chrome/test/base:perf_test_support",
287 "//ios/web", 298 "//ios/web",
288 "//ios/web:test_support", 299 "//ios/web:test_support",
289 ] 300 ]
290 libs = [ "WebKit.framework" ] 301 libs = [ "WebKit.framework" ]
291 } 302 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698