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

Side by Side Diff: ios/web_view/internal/BUILD.gn

Issue 2715043002: Replace prefix of ios/web_view C++ classes. (Closed)
Patch Set: Respond to comments. 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 | « no previous file | ios/web_view/internal/criwv_browser_state.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 source_set("internal") { 5 source_set("internal") {
6 visibility = [ 6 visibility = [
7 "//ios/web_view", 7 "//ios/web_view",
8 "//ios/web_view/internal/*", 8 "//ios/web_view/internal/*",
9 ] 9 ]
10 10
11 sources = [ 11 sources = [
12 "criwv_browser_state.h",
13 "criwv_browser_state.mm",
14 "criwv_network_delegate.cc",
15 "criwv_network_delegate.h",
16 "criwv_url_request_context_getter.h",
17 "criwv_url_request_context_getter.mm",
18 "criwv_web_client.h",
19 "criwv_web_client.mm",
20 "criwv_web_main_delegate.h",
21 "criwv_web_main_delegate.mm",
22 "criwv_web_main_parts.h",
23 "criwv_web_main_parts.mm",
24 "cwv.mm", 12 "cwv.mm",
25 "cwv_web_view.mm", 13 "cwv_web_view.mm",
26 "cwv_web_view_configuration.mm", 14 "cwv_web_view_configuration.mm",
27 "cwv_website_data_store.mm", 15 "cwv_website_data_store.mm",
28 "cwv_website_data_store_internal.h", 16 "cwv_website_data_store_internal.h",
29 "pref_names.cc", 17 "pref_names.cc",
30 "pref_names.h", 18 "pref_names.h",
19 "web_view_browser_state.h",
20 "web_view_browser_state.mm",
21 "web_view_network_delegate.cc",
22 "web_view_network_delegate.h",
23 "web_view_url_request_context_getter.h",
24 "web_view_url_request_context_getter.mm",
25 "web_view_web_client.h",
26 "web_view_web_client.mm",
27 "web_view_web_main_delegate.h",
28 "web_view_web_main_delegate.mm",
29 "web_view_web_main_parts.h",
30 "web_view_web_main_parts.mm",
31 ] 31 ]
32 deps = [ 32 deps = [
33 "//base", 33 "//base",
34 "//components/pref_registry", 34 "//components/pref_registry",
35 "//components/prefs", 35 "//components/prefs",
36 "//components/translate/core/browser", 36 "//components/translate/core/browser",
37 "//components/translate/core/common", 37 "//components/translate/core/common",
38 "//ios/net", 38 "//ios/net",
39 "//ios/web", 39 "//ios/web",
40 "//ios/web:user_agent", 40 "//ios/web:user_agent",
41 "//ios/web/public/app", 41 "//ios/web/public/app",
42 "//ios/web_view/internal/translate", 42 "//ios/web_view/internal/translate",
43 "//ios/web_view/public", 43 "//ios/web_view/public",
44 "//net", 44 "//net",
45 "//net:extras", 45 "//net:extras",
46 "//ui/base", 46 "//ui/base",
47 "//url", 47 "//url",
48 ] 48 ]
49 49
50 allow_circular_includes_from = [ "//ios/web_view/internal/translate" ] 50 allow_circular_includes_from = [ "//ios/web_view/internal/translate" ]
51 51
52 configs += [ "//build/config/compiler:enable_arc" ] 52 configs += [ "//build/config/compiler:enable_arc" ]
53 } 53 }
OLDNEW
« no previous file with comments | « no previous file | ios/web_view/internal/criwv_browser_state.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698