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 if (is_android) { | 5 if (is_android) { |
6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
7 import("//build/config/android/rules.gni") | 7 import("//build/config/android/rules.gni") |
8 } | 8 } |
9 | 9 |
10 source_set("contents") { | 10 source_set("contents") { |
11 visibility = [ "//blimp/client/*" ] | 11 visibility = [ "//blimp/client/*" ] |
12 | 12 |
13 sources = [ | 13 sources = [ |
14 "blimp_contents_impl.cc", | 14 "blimp_contents_impl.cc", |
15 "blimp_contents_impl.h", | 15 "blimp_contents_impl.h", |
16 "blimp_contents_manager.cc", | 16 "blimp_contents_manager.cc", |
17 "blimp_contents_manager.h", | 17 "blimp_contents_manager.h", |
18 "blimp_navigation_controller_delegate.h", | 18 "blimp_navigation_controller_delegate.h", |
19 "blimp_navigation_controller_impl.cc", | 19 "blimp_navigation_controller_impl.cc", |
20 "blimp_navigation_controller_impl.h", | 20 "blimp_navigation_controller_impl.h", |
21 "ime_feature.cc", | 21 "ime_feature.cc", |
22 "ime_feature.h", | 22 "ime_feature.h", |
23 "navigation_feature.cc", | 23 "navigation_feature.cc", |
24 "navigation_feature.h", | 24 "navigation_feature.h", |
25 ] | 25 ] |
26 | 26 |
27 public_deps = [ | 27 public_deps = [ |
28 "//base", | 28 "//base", |
| 29 "//blimp/client:feature", |
29 "//blimp/client/public:public_headers", | 30 "//blimp/client/public:public_headers", |
30 "//blimp/net", | 31 "//blimp/net", |
31 "//net:net", | 32 "//net:net", |
32 "//ui/base/ime:text_input_types", | 33 "//ui/base/ime:text_input_types", |
| 34 "//ui/gfx/geometry:geometry", |
33 "//url", | 35 "//url", |
34 ] | 36 ] |
35 | 37 |
36 deps = [ | 38 deps = [ |
37 "//blimp/common", | 39 "//blimp/common", |
38 "//components/url_formatter", | 40 "//components/url_formatter", |
39 ] | 41 ] |
40 | 42 |
41 if (is_android) { | 43 if (is_android) { |
42 sources += [ | 44 sources += [ |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 "blimp_contents_manager_unittest.cc", | 90 "blimp_contents_manager_unittest.cc", |
89 "blimp_contents_observer_unittest.cc", | 91 "blimp_contents_observer_unittest.cc", |
90 "blimp_navigation_controller_impl_unittest.cc", | 92 "blimp_navigation_controller_impl_unittest.cc", |
91 "navigation_feature_unittest.cc", | 93 "navigation_feature_unittest.cc", |
92 ] | 94 ] |
93 | 95 |
94 deps = [ | 96 deps = [ |
95 ":contents", | 97 ":contents", |
96 ":test_support", | 98 ":test_support", |
97 "//base", | 99 "//base", |
| 100 "//blimp/client:feature", |
98 "//blimp/client/public:public_headers", | 101 "//blimp/client/public:public_headers", |
99 "//blimp/common", | 102 "//blimp/common", |
100 "//blimp/net:test_support", | 103 "//blimp/net:test_support", |
101 "//net:test_support", | 104 "//net:test_support", |
102 "//testing/gtest", | 105 "//testing/gtest", |
| 106 "//ui/gfx:test_support", |
| 107 "//ui/gfx/geometry:geometry", |
103 "//url", | 108 "//url", |
104 ] | 109 ] |
105 } | 110 } |
106 | 111 |
107 if (is_android) { | 112 if (is_android) { |
108 android_library("contents_java") { | 113 android_library("contents_java") { |
109 visibility = [ "//blimp/client/*" ] | 114 visibility = [ "//blimp/client/*" ] |
110 | 115 |
111 java_files = [ | 116 java_files = [ |
112 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsImpl.java"
, | 117 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsImpl.java"
, |
(...skipping 12 matching lines...) Expand all Loading... |
125 | 130 |
126 sources = [ | 131 sources = [ |
127 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsImpl.java"
, | 132 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsImpl.java"
, |
128 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsObserverPr
oxy.java", | 133 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsObserverPr
oxy.java", |
129 "android/java/src/org/chromium/blimp/core/contents/BlimpNavigationControll
erImpl.java", | 134 "android/java/src/org/chromium/blimp/core/contents/BlimpNavigationControll
erImpl.java", |
130 ] | 135 ] |
131 | 136 |
132 jni_package = "blimp/client/core/contents" | 137 jni_package = "blimp/client/core/contents" |
133 } | 138 } |
134 } | 139 } |
OLD | NEW |