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

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

Issue 2058263002: Tied up BlimpNavigationController to NavigationFeature (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blimp_core
Patch Set: Removed BlimpContentsTest.java 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/javatests/src/org/chromium/blimp/core/contents/BlimpContentsTest.java » ('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 }
11 11
12 source_set("session") { 12 source_set("session") {
13 sources = [ 13 sources = [
14 "session/blimp_client_session.cc", 14 "session/blimp_client_session.cc",
15 "session/blimp_client_session.h", 15 "session/blimp_client_session.h",
16 ] 16 ]
17 17
18 public_deps = [ 18 public_deps = [
19 ":feature", 19 ":feature",
20 "//blimp/client/core:switches", 20 "//blimp/client/core:switches",
21 "//ui/events", 21 "//ui/events",
22 ] 22 ]
23 23
24 deps = [ 24 deps = [
25 ":compositor", 25 ":compositor",
26 "//base", 26 "//base",
27 "//blimp/client/core/compositor", 27 "//blimp/client/core/compositor",
28 "//blimp/client/core/contents",
28 "//blimp/client/core/session", 29 "//blimp/client/core/session",
29 "//blimp/common", 30 "//blimp/common",
30 "//blimp/common/proto", 31 "//blimp/common/proto",
31 "//blimp/net", 32 "//blimp/net",
32 "//net", 33 "//net",
33 "//ui/gfx/geometry", 34 "//ui/gfx/geometry",
34 "//url:url", 35 "//url:url",
35 ] 36 ]
36 } 37 }
37 38
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 "//base/test:test_support", 86 "//base/test:test_support",
86 "//testing/gmock", 87 "//testing/gmock",
87 "//testing/gtest", 88 "//testing/gtest",
88 ] 89 ]
89 } 90 }
90 91
91 source_set("feature") { 92 source_set("feature") {
92 sources = [ 93 sources = [
93 "feature/ime_feature.cc", 94 "feature/ime_feature.cc",
94 "feature/ime_feature.h", 95 "feature/ime_feature.h",
95 "feature/navigation_feature.cc",
96 "feature/navigation_feature.h",
97 "feature/render_widget_feature.cc", 96 "feature/render_widget_feature.cc",
98 "feature/render_widget_feature.h", 97 "feature/render_widget_feature.h",
99 "feature/settings_feature.cc", 98 "feature/settings_feature.cc",
100 "feature/settings_feature.h", 99 "feature/settings_feature.h",
101 "feature/tab_control_feature.cc", 100 "feature/tab_control_feature.cc",
102 "feature/tab_control_feature.h", 101 "feature/tab_control_feature.h",
103 ] 102 ]
104 103
105 deps = [ 104 deps = [
106 "//base:base", 105 "//base:base",
(...skipping 12 matching lines...) Expand all
119 "//blimp/common/proto", 118 "//blimp/common/proto",
120 ] 119 ]
121 } 120 }
122 121
123 source_set("test_support") { 122 source_set("test_support") {
124 testonly = true 123 testonly = true
125 124
126 sources = [ 125 sources = [
127 "feature/mock_ime_feature_delegate.cc", 126 "feature/mock_ime_feature_delegate.cc",
128 "feature/mock_ime_feature_delegate.h", 127 "feature/mock_ime_feature_delegate.h",
129 "feature/mock_navigation_feature_delegate.cc",
130 "feature/mock_navigation_feature_delegate.h",
131 "feature/mock_render_widget_feature_delegate.cc", 128 "feature/mock_render_widget_feature_delegate.cc",
132 "feature/mock_render_widget_feature_delegate.h", 129 "feature/mock_render_widget_feature_delegate.h",
133 "session/test_client_session.cc", 130 "session/test_client_session.cc",
134 "session/test_client_session.h", 131 "session/test_client_session.h",
135 ] 132 ]
136 133
137 deps = [ 134 deps = [
138 ":session", 135 ":session",
139 "//skia", 136 "//skia",
140 "//testing/gmock", 137 "//testing/gmock",
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 "//blimp/common/proto", 187 "//blimp/common/proto",
191 "//skia", 188 "//skia",
192 ] 189 ]
193 } 190 }
194 191
195 source_set("feature_unit_tests") { 192 source_set("feature_unit_tests") {
196 testonly = true 193 testonly = true
197 194
198 sources = [ 195 sources = [
199 "feature/compositor/blimp_compositor_manager_unittest.cc", 196 "feature/compositor/blimp_compositor_manager_unittest.cc",
200 "feature/navigation_feature_unittest.cc",
201 "feature/render_widget_feature_unittest.cc", 197 "feature/render_widget_feature_unittest.cc",
202 "feature/tab_control_feature_unittest.cc", 198 "feature/tab_control_feature_unittest.cc",
203 ] 199 ]
204 200
205 deps = [ 201 deps = [
206 ":compositor", 202 ":compositor",
207 ":test_support", 203 ":test_support",
208 "//base", 204 "//base",
209 "//base/test:test_support", 205 "//base/test:test_support",
210 "//blimp/client/core/compositor", 206 "//blimp/client/core/compositor",
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 # TODO(khushalsagar|scottmg): Remove this dependency from browser to 247 # TODO(khushalsagar|scottmg): Remove this dependency from browser to
252 # blink. See https://crbug.com/608114. 248 # blink. See https://crbug.com/608114.
253 "//third_party/WebKit/public:blink", 249 "//third_party/WebKit/public:blink",
254 "//ui/events/platform/x11", 250 "//ui/events/platform/x11",
255 "//ui/platform_window", 251 "//ui/platform_window",
256 "//ui/platform_window/x11", 252 "//ui/platform_window/x11",
257 ] 253 ]
258 254
259 public_configs = [ "//build/config/linux:x11" ] 255 public_configs = [ "//build/config/linux:x11" ]
260 public_deps = [ 256 public_deps = [
257 "//blimp/client/core/contents",
261 "//ui/events/platform/x11", 258 "//ui/events/platform/x11",
262 ] 259 ]
263 } 260 }
264 } 261 }
265 262
266 if (is_android) { 263 if (is_android) {
267 declare_args() { 264 declare_args() {
268 # Package name used in the manifest for the Blimp APK. 265 # Package name used in the manifest for the Blimp APK.
269 blimp_package_name = "org.chromium.blimp" 266 blimp_package_name = "org.chromium.blimp"
270 } 267 }
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 "//base:base_java_test_support", 403 "//base:base_java_test_support",
407 "//blimp/client/core:settings_java", 404 "//blimp/client/core:settings_java",
408 "//blimp/client/core/contents:contents_java", 405 "//blimp/client/core/contents:contents_java",
409 "//blimp/client/public:public_headers_java", 406 "//blimp/client/public:public_headers_java",
410 google_play_services_library, 407 google_play_services_library,
411 ] 408 ]
412 409
413 java_files = [ 410 java_files = [
414 "app/android/javatests/src/org/chromium/blimp/auth/MockTokenSource.java", 411 "app/android/javatests/src/org/chromium/blimp/auth/MockTokenSource.java",
415 "app/android/javatests/src/org/chromium/blimp/auth/RetryingTokenSourceTest .java", 412 "app/android/javatests/src/org/chromium/blimp/auth/RetryingTokenSourceTest .java",
416 "app/android/javatests/src/org/chromium/blimp/core/contents/BlimpContentsT est.java",
417 "app/android/javatests/src/org/chromium/blimp/core/settings/BlimpPreferenc esTest.java", 413 "app/android/javatests/src/org/chromium/blimp/core/settings/BlimpPreferenc esTest.java",
418 "app/android/javatests/src/org/chromium/blimp/core/settings/MockPreference s.java", 414 "app/android/javatests/src/org/chromium/blimp/core/settings/MockPreference s.java",
419 "app/android/javatests/src/org/chromium/blimp/BlimpNativeInstrumentationTe stCase.java", 415 "app/android/javatests/src/org/chromium/blimp/BlimpNativeInstrumentationTe stCase.java",
420 ] 416 ]
421 } 417 }
422 418
423 shared_library("blimp_client_android") { 419 shared_library("blimp_client_android") {
424 deps = [ 420 deps = [
425 ":client", 421 ":client",
426 ":jni_headers", 422 ":jni_headers",
427 "//base", 423 "//base",
428 "//blimp/client:compositor", 424 "//blimp/client:compositor",
429 "//blimp/client/core", 425 "//blimp/client/core",
426 "//blimp/client/core/contents",
430 "//blimp/client/core/session:session", 427 "//blimp/client/core/session:session",
431 "//blimp/client/public:public_headers", 428 "//blimp/client/public:public_headers",
432 "//blimp/common", 429 "//blimp/common",
433 "//blimp/common/proto", 430 "//blimp/common/proto",
434 "//blimp/net", 431 "//blimp/net",
435 "//components/safe_json/android:safe_json_jni_headers", 432 "//components/safe_json/android:safe_json_jni_headers",
436 "//components/url_formatter",
437 "//components/version_info", 433 "//components/version_info",
438 "//net", 434 "//net",
439 "//skia", 435 "//skia",
440 "//ui/base/ime:text_input_types", 436 "//ui/base/ime:text_input_types",
441 "//ui/gfx/geometry", 437 "//ui/gfx/geometry",
442 "//ui/gl", 438 "//ui/gl",
443 "//url:url", 439 "//url:url",
444 ] 440 ]
445 441
446 sources = [ 442 sources = [
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
484 instrumentation_test_apk("blimp_test_apk") { 480 instrumentation_test_apk("blimp_test_apk") {
485 apk_name = "BlimpTest" 481 apk_name = "BlimpTest"
486 apk_under_test = ":blimp_apk" 482 apk_under_test = ":blimp_apk"
487 android_manifest = blimp_test_apk_manifest 483 android_manifest = blimp_test_apk_manifest
488 android_manifest_dep = ":blimp_test_apk_manifest" 484 android_manifest_dep = ":blimp_test_apk_manifest"
489 deps = [ 485 deps = [
490 ":blimp_test_java", 486 ":blimp_test_java",
491 ] 487 ]
492 } 488 }
493 } 489 }
OLDNEW
« no previous file with comments | « no previous file | blimp/client/app/android/javatests/src/org/chromium/blimp/core/contents/BlimpContentsTest.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698