| OLD | NEW |
| 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 "mailto_handler.h", | 12 "mailto_handler.h", |
| 13 "mailto_handler.mm", | 13 "mailto_handler.mm", |
| 14 "mailto_handler_gmail.h", | 14 "mailto_handler_gmail.h", |
| 15 "mailto_handler_gmail.mm", | 15 "mailto_handler_gmail.mm", |
| 16 "mailto_handler_system_mail.h", | 16 "mailto_handler_system_mail.h", |
| 17 "mailto_handler_system_mail.mm", | 17 "mailto_handler_system_mail.mm", |
| 18 "mailto_url_rewriter.h", | 18 "mailto_url_rewriter.h", |
| 19 "mailto_url_rewriter.mm", | 19 "mailto_url_rewriter.mm", |
| 20 "navigation_manager_util.h", | 20 "navigation_manager_util.h", |
| 21 "navigation_manager_util.mm", | 21 "navigation_manager_util.mm", |
| 22 "network_activity_indicator_tab_helper.h", | 22 "network_activity_indicator_tab_helper.h", |
| 23 "network_activity_indicator_tab_helper.mm", | 23 "network_activity_indicator_tab_helper.mm", |
| 24 "repost_form_tab_helper.h", | 24 "repost_form_tab_helper.h", |
| 25 "repost_form_tab_helper.mm", | 25 "repost_form_tab_helper.mm", |
| 26 "sad_tab_tab_helper.h", | 26 "sad_tab_tab_helper.h", |
| 27 "sad_tab_tab_helper.mm", | 27 "sad_tab_tab_helper.mm", |
| 28 "tab_id_tab_helper.h", |
| 29 "tab_id_tab_helper.mm", |
| 28 ] | 30 ] |
| 29 deps = [ | 31 deps = [ |
| 30 ":sad_tab_tab_helper_delegate", | 32 ":sad_tab_tab_helper_delegate", |
| 31 "//base", | 33 "//base", |
| 32 "//components/strings", | 34 "//components/strings", |
| 33 "//ios/chrome/app/strings:ios_strings_grit", | 35 "//ios/chrome/app/strings:ios_strings_grit", |
| 34 "//ios/chrome/browser", | 36 "//ios/chrome/browser", |
| 35 "//ios/chrome/browser/ui", | 37 "//ios/chrome/browser/ui", |
| 36 "//ios/chrome/browser/ui/alert_coordinator:alert_coordinator", | 38 "//ios/chrome/browser/ui/alert_coordinator:alert_coordinator", |
| 37 "//ios/chrome/browser/ui/commands:commands", | 39 "//ios/chrome/browser/ui/commands:commands", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 56 testonly = true | 58 testonly = true |
| 57 sources = [ | 59 sources = [ |
| 58 "mailto_handler_gmail_unittest.mm", | 60 "mailto_handler_gmail_unittest.mm", |
| 59 "mailto_handler_system_mail_unittest.mm", | 61 "mailto_handler_system_mail_unittest.mm", |
| 60 "mailto_handler_unittest.mm", | 62 "mailto_handler_unittest.mm", |
| 61 "mailto_url_rewriter_unittest.mm", | 63 "mailto_url_rewriter_unittest.mm", |
| 62 "navigation_manager_util_unittest.mm", | 64 "navigation_manager_util_unittest.mm", |
| 63 "network_activity_indicator_tab_helper_unittest.mm", | 65 "network_activity_indicator_tab_helper_unittest.mm", |
| 64 "repost_form_tab_helper_unittest.mm", | 66 "repost_form_tab_helper_unittest.mm", |
| 65 "sad_tab_tab_helper_unittest.mm", | 67 "sad_tab_tab_helper_unittest.mm", |
| 68 "tab_id_tab_helper_unittest.mm", |
| 66 ] | 69 ] |
| 67 deps = [ | 70 deps = [ |
| 68 ":sad_tab_tab_helper_delegate", | 71 ":sad_tab_tab_helper_delegate", |
| 69 ":test_support", | 72 ":test_support", |
| 70 ":web", | 73 ":web", |
| 71 "//base:base", | 74 "//base:base", |
| 72 "//base/test:test_support", | 75 "//base/test:test_support", |
| 73 "//components/strings:components_strings_grit", | 76 "//components/strings:components_strings_grit", |
| 74 "//ios/chrome/browser/ui:ui", | 77 "//ios/chrome/browser/ui:ui", |
| 75 "//ios/chrome/browser/ui/sad_tab", | 78 "//ios/chrome/browser/ui/sad_tab", |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 ] | 367 ] |
| 365 deps = [ | 368 deps = [ |
| 366 "//base", | 369 "//base", |
| 367 "//ios/chrome/test/base:perf_test_support", | 370 "//ios/chrome/test/base:perf_test_support", |
| 368 "//ios/web", | 371 "//ios/web", |
| 369 "//ios/web/public/test", | 372 "//ios/web/public/test", |
| 370 "//ios/web/public/test/fakes", | 373 "//ios/web/public/test/fakes", |
| 371 ] | 374 ] |
| 372 libs = [ "WebKit.framework" ] | 375 libs = [ "WebKit.framework" ] |
| 373 } | 376 } |
| OLD | NEW |