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

Side by Side Diff: blimp/client/core/contents/BUILD.gn

Issue 2279403003: blimp: Hook up the layer holding the tab content into Chrome. (Closed)
Patch Set: add linux Created 4 years, 3 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 | « blimp/client/DEPS ('k') | blimp/client/core/contents/blimp_contents_impl.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 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_contents_view.h",
18 "blimp_navigation_controller_delegate.h", 19 "blimp_navigation_controller_delegate.h",
19 "blimp_navigation_controller_impl.cc", 20 "blimp_navigation_controller_impl.cc",
20 "blimp_navigation_controller_impl.h", 21 "blimp_navigation_controller_impl.h",
21 "ime_feature.cc", 22 "ime_feature.cc",
22 "ime_feature.h", 23 "ime_feature.h",
23 "navigation_feature.cc", 24 "navigation_feature.cc",
24 "navigation_feature.h", 25 "navigation_feature.h",
25 ] 26 ]
26 27
27 public_deps = [ 28 public_deps = [
28 "//base", 29 "//base",
29 "//blimp/client:feature", 30 "//blimp/client:feature",
30 "//blimp/client/public:public_headers", 31 "//blimp/client/public:public_headers",
31 "//blimp/net", 32 "//blimp/net",
32 "//net:net", 33 "//net:net",
33 "//ui/base/ime:text_input_types", 34 "//ui/base/ime:text_input_types",
34 "//ui/gfx/geometry:geometry", 35 "//ui/gfx/geometry:geometry",
35 "//url", 36 "//url",
36 ] 37 ]
37 38
38 deps = [ 39 deps = [
39 "//blimp/common", 40 "//blimp/common",
40 "//components/url_formatter", 41 "//components/url_formatter",
42 "//skia",
41 ] 43 ]
42 44
43 if (is_android) { 45 if (is_android) {
44 sources += [ 46 sources += [
45 "android/blimp_contents_impl_android.cc", 47 "android/blimp_contents_impl_android.cc",
46 "android/blimp_contents_impl_android.h", 48 "android/blimp_contents_impl_android.h",
47 "android/blimp_contents_jni_registrar.cc", 49 "android/blimp_contents_jni_registrar.cc",
48 "android/blimp_contents_jni_registrar.h", 50 "android/blimp_contents_jni_registrar.h",
49 "android/blimp_contents_observer_proxy.cc", 51 "android/blimp_contents_observer_proxy.cc",
50 "android/blimp_contents_observer_proxy.h", 52 "android/blimp_contents_observer_proxy.h",
51 "android/blimp_navigation_controller_impl_android.cc", 53 "android/blimp_navigation_controller_impl_android.cc",
52 "android/blimp_navigation_controller_impl_android.h", 54 "android/blimp_navigation_controller_impl_android.h",
55 "blimp_contents_view_android.cc",
56 "blimp_contents_view_android.h",
53 ] 57 ]
54 58
55 deps += [ ":jni_headers" ] 59 deps += [ ":jni_headers" ]
60 } else {
61 sources += [
62 "blimp_contents_view_aura.cc",
63 "blimp_contents_view_aura.h",
David Trainor- moved to gerrit 2016/08/29 05:17:51 Should this be _aura or _linux? I don't think we
Khushal 2016/08/29 05:54:19 Yeah, we don't use aura on the linux client but al
64 ]
56 } 65 }
57 } 66 }
58 67
59 source_set("test_support") { 68 source_set("test_support") {
60 testonly = true 69 testonly = true
61 70
62 sources = [ 71 sources = [
63 "fake_navigation_feature.cc", 72 "fake_navigation_feature.cc",
64 "fake_navigation_feature.h", 73 "fake_navigation_feature.h",
65 "mock_ime_feature_delegate.cc", 74 "mock_ime_feature_delegate.cc",
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 139
131 sources = [ 140 sources = [
132 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsImpl.java" , 141 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsImpl.java" ,
133 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsObserverPr oxy.java", 142 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsObserverPr oxy.java",
134 "android/java/src/org/chromium/blimp/core/contents/BlimpNavigationControll erImpl.java", 143 "android/java/src/org/chromium/blimp/core/contents/BlimpNavigationControll erImpl.java",
135 ] 144 ]
136 145
137 jni_package = "blimp/client/core/contents" 146 jni_package = "blimp/client/core/contents"
138 } 147 }
139 } 148 }
OLDNEW
« no previous file with comments | « blimp/client/DEPS ('k') | blimp/client/core/contents/blimp_contents_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698