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

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

Issue 2251223002: blimp: Moved ImeFeature to blimp/client/core/contents (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 | blimp/client/app/android/web_input_box.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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/config.gni") 8 import("//build/config/android/config.gni")
9 import("//build/config/android/rules.gni") 9 import("//build/config/android/rules.gni")
10 } 10 }
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 "//base/test:test_support", 86 "//base/test:test_support",
87 "//testing/gmock", 87 "//testing/gmock",
88 "//testing/gtest", 88 "//testing/gtest",
89 ] 89 ]
90 } 90 }
91 91
92 source_set("feature") { 92 source_set("feature") {
93 sources = [ 93 sources = [
94 "core/contents/tab_control_feature.cc", 94 "core/contents/tab_control_feature.cc",
95 "core/contents/tab_control_feature.h", 95 "core/contents/tab_control_feature.h",
96 "feature/ime_feature.cc",
97 "feature/ime_feature.h",
98 "feature/render_widget_feature.cc", 96 "feature/render_widget_feature.cc",
99 "feature/render_widget_feature.h", 97 "feature/render_widget_feature.h",
100 "feature/settings_feature.cc", 98 "feature/settings_feature.cc",
101 "feature/settings_feature.h", 99 "feature/settings_feature.h",
102 ] 100 ]
103 101
104 deps = [ 102 deps = [
105 "//base:base", 103 "//base:base",
106 "//blimp/common", 104 "//blimp/common",
107 "//blimp/net", 105 "//blimp/net",
108 "//cc", 106 "//cc",
109 "//cc/proto", 107 "//cc/proto",
110 "//components/url_formatter", 108 "//components/url_formatter",
111 "//net:net", 109 "//net:net",
112 "//skia", 110 "//skia",
113 "//ui/base/ime:text_input_types",
114 "//ui/gfx/geometry:geometry", 111 "//ui/gfx/geometry:geometry",
115 ] 112 ]
116 113
117 public_deps = [ 114 public_deps = [
118 "//blimp/common/proto", 115 "//blimp/common/proto",
119 ] 116 ]
120 } 117 }
121 118
122 source_set("test_support") { 119 source_set("test_support") {
123 testonly = true 120 testonly = true
124 121
125 sources = [ 122 sources = [
126 "feature/mock_ime_feature_delegate.cc",
127 "feature/mock_ime_feature_delegate.h",
128 "feature/mock_render_widget_feature_delegate.cc", 123 "feature/mock_render_widget_feature_delegate.cc",
129 "feature/mock_render_widget_feature_delegate.h", 124 "feature/mock_render_widget_feature_delegate.h",
130 "session/test_client_session.cc", 125 "session/test_client_session.cc",
131 "session/test_client_session.h", 126 "session/test_client_session.h",
132 ] 127 ]
133 128
134 deps = [ 129 deps = [
135 ":session", 130 ":session",
136 "//skia", 131 "//skia",
137 "//testing/gmock", 132 "//testing/gmock",
(...skipping 30 matching lines...) Expand all
168 "//gpu/command_buffer/client", 163 "//gpu/command_buffer/client",
169 "//gpu/command_buffer/client:gl_in_process_context", 164 "//gpu/command_buffer/client:gl_in_process_context",
170 "//gpu/command_buffer/client:gles2_c_lib", 165 "//gpu/command_buffer/client:gles2_c_lib",
171 "//gpu/command_buffer/client:gles2_implementation", 166 "//gpu/command_buffer/client:gles2_implementation",
172 "//gpu/command_buffer/common:gles2_utils", 167 "//gpu/command_buffer/common:gles2_utils",
173 "//gpu/skia_bindings", 168 "//gpu/skia_bindings",
174 "//net", 169 "//net",
175 "//skia", 170 "//skia",
176 "//third_party/WebKit/public:blink_headers", 171 "//third_party/WebKit/public:blink_headers",
177 "//third_party/libwebp", 172 "//third_party/libwebp",
178 "//ui/base/ime:text_input_types",
179 "//ui/events:gesture_detection", 173 "//ui/events:gesture_detection",
180 "//ui/events/blink", 174 "//ui/events/blink",
181 "//ui/events/gestures/blink", 175 "//ui/events/gestures/blink",
182 "//ui/gl", 176 "//ui/gl",
183 ] 177 ]
184 178
185 public_deps = [ 179 public_deps = [
186 ":feature", 180 ":feature",
187 "//blimp/common/proto", 181 "//blimp/common/proto",
188 "//skia", 182 "//skia",
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
424 "//blimp/client/core/contents", 418 "//blimp/client/core/contents",
425 "//blimp/client/core/session:session", 419 "//blimp/client/core/session:session",
426 "//blimp/client/public:public_headers", 420 "//blimp/client/public:public_headers",
427 "//blimp/common", 421 "//blimp/common",
428 "//blimp/common/proto", 422 "//blimp/common/proto",
429 "//blimp/net", 423 "//blimp/net",
430 "//components/safe_json/android:safe_json_jni_headers", 424 "//components/safe_json/android:safe_json_jni_headers",
431 "//components/version_info", 425 "//components/version_info",
432 "//net", 426 "//net",
433 "//skia", 427 "//skia",
434 "//ui/base/ime:text_input_types",
435 "//ui/gfx/geometry", 428 "//ui/gfx/geometry",
436 "//ui/gl", 429 "//ui/gl",
437 "//url:url", 430 "//url:url",
438 ] 431 ]
439 432
440 sources = [ 433 sources = [
441 "app/android/blimp_app_jni_registrar.cc", 434 "app/android/blimp_app_jni_registrar.cc",
442 "app/android/blimp_app_jni_registrar.h", 435 "app/android/blimp_app_jni_registrar.h",
443 "app/android/blimp_client_session_android.cc", 436 "app/android/blimp_client_session_android.cc",
444 "app/android/blimp_client_session_android.h", 437 "app/android/blimp_client_session_android.h",
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 instrumentation_test_apk("blimp_test_apk") { 471 instrumentation_test_apk("blimp_test_apk") {
479 apk_name = "BlimpTest" 472 apk_name = "BlimpTest"
480 apk_under_test = ":blimp_apk" 473 apk_under_test = ":blimp_apk"
481 android_manifest = blimp_test_apk_manifest 474 android_manifest = blimp_test_apk_manifest
482 android_manifest_dep = ":blimp_test_apk_manifest" 475 android_manifest_dep = ":blimp_test_apk_manifest"
483 deps = [ 476 deps = [
484 ":blimp_test_java", 477 ":blimp_test_java",
485 ] 478 ]
486 } 479 }
487 } 480 }
OLDNEW
« no previous file with comments | « no previous file | blimp/client/app/android/web_input_box.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698