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

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

Issue 2770633002: Export all CWV* symbols from the ios/web_view dynamic library. (Closed)
Patch Set: 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
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
(...skipping 18 matching lines...) Expand all
29 "web_view_url_request_context_getter.mm", 29 "web_view_url_request_context_getter.mm",
30 "web_view_web_client.h", 30 "web_view_web_client.h",
31 "web_view_web_client.mm", 31 "web_view_web_client.mm",
32 "web_view_web_main_delegate.h", 32 "web_view_web_main_delegate.h",
33 "web_view_web_main_delegate.mm", 33 "web_view_web_main_delegate.mm",
34 "web_view_web_main_parts.h", 34 "web_view_web_main_parts.h",
35 "web_view_web_main_parts.mm", 35 "web_view_web_main_parts.mm",
36 "web_view_web_state_policy_decider.h", 36 "web_view_web_state_policy_decider.h",
37 "web_view_web_state_policy_decider.mm", 37 "web_view_web_state_policy_decider.mm",
38 ] 38 ]
39
40 defines = [ "CWV_IMPLEMENTATION" ]
michaeldo 2017/03/22 23:16:22 Can you explain what this is for, probably should
Hiroshi Ichikawa 2017/03/23 05:03:02 Added a description to the CL. Also added a short
michaeldo 2017/03/23 15:12:41 Understand now, thank you!
41
39 deps = [ 42 deps = [
40 "//base", 43 "//base",
41 "//components/pref_registry", 44 "//components/pref_registry",
42 "//components/prefs", 45 "//components/prefs",
43 "//components/translate/core/browser", 46 "//components/translate/core/browser",
44 "//components/translate/core/common", 47 "//components/translate/core/common",
45 "//ios/net", 48 "//ios/net",
46 "//ios/web", 49 "//ios/web",
47 "//ios/web:reload_type", 50 "//ios/web:reload_type",
48 "//ios/web:user_agent", 51 "//ios/web:user_agent",
49 "//ios/web/public/app", 52 "//ios/web/public/app",
50 "//ios/web_view/internal/translate", 53 "//ios/web_view/internal/translate",
51 "//ios/web_view/public", 54 "//ios/web_view/public",
52 "//net", 55 "//net",
53 "//net:extras", 56 "//net:extras",
54 "//ui/base", 57 "//ui/base",
55 "//url", 58 "//url",
56 ] 59 ]
57 60
58 allow_circular_includes_from = [ "//ios/web_view/internal/translate" ] 61 allow_circular_includes_from = [ "//ios/web_view/internal/translate" ]
59 62
60 configs += [ "//build/config/compiler:enable_arc" ] 63 configs += [ "//build/config/compiler:enable_arc" ]
61 } 64 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698