Chromium Code Reviews| 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 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 Loading... | |
| 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 # Let header files know that it is building ios/web_view library, not using | |
| 41 # it. | |
| 42 defines = [ "CWV_IMPLEMENTATION" ] | |
|
Eugene But (OOO till 7-30)
2017/03/24 16:39:20
Is it possible to avoid duplicating CWV_IMPLEMENTA
Hiroshi Ichikawa
2017/03/27 02:09:25
What do you mean by duplicating? Dup between which
| |
| 43 | |
| 39 deps = [ | 44 deps = [ |
| 40 "//base", | 45 "//base", |
| 41 "//components/pref_registry", | 46 "//components/pref_registry", |
| 42 "//components/prefs", | 47 "//components/prefs", |
| 43 "//components/translate/core/browser", | 48 "//components/translate/core/browser", |
| 44 "//components/translate/core/common", | 49 "//components/translate/core/common", |
| 45 "//ios/net", | 50 "//ios/net", |
| 46 "//ios/web", | 51 "//ios/web", |
| 47 "//ios/web:reload_type", | 52 "//ios/web:reload_type", |
| 48 "//ios/web:user_agent", | 53 "//ios/web:user_agent", |
| 49 "//ios/web/public/app", | 54 "//ios/web/public/app", |
| 50 "//ios/web_view/internal/translate", | 55 "//ios/web_view/internal/translate", |
| 51 "//ios/web_view/public", | 56 "//ios/web_view/public", |
| 52 "//net", | 57 "//net", |
| 53 "//net:extras", | 58 "//net:extras", |
| 54 "//ui/base", | 59 "//ui/base", |
| 55 "//url", | 60 "//url", |
| 56 ] | 61 ] |
| 57 | 62 |
| 58 allow_circular_includes_from = [ "//ios/web_view/internal/translate" ] | 63 allow_circular_includes_from = [ "//ios/web_view/internal/translate" ] |
| 59 | 64 |
| 60 configs += [ "//build/config/compiler:enable_arc" ] | 65 configs += [ "//build/config/compiler:enable_arc" ] |
| 61 } | 66 } |
| OLD | NEW |