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

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

Issue 2376573002: Cleanup blimp/client/core code organization. (Closed)
Patch Set: Rebased Created 4 years, 2 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/README.md » ('j') | blimp/client/core/context/BUILD.gn » ('J')
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 "//blimp/client/core", 19 "//blimp/client/core",
20 "//blimp/client/core:switches",
21 "//blimp/client/core/geolocation", 20 "//blimp/client/core/geolocation",
21 "//blimp/client/core/switches",
22 "//blimp/common/proto", 22 "//blimp/common/proto",
23 "//device/geolocation", 23 "//device/geolocation",
24 "//ui/events", 24 "//ui/events",
25 ] 25 ]
26 26
27 deps = [ 27 deps = [
28 "//base", 28 "//base",
29 "//blimp/client/core/compositor", 29 "//blimp/client/core/compositor",
30 "//blimp/client/core/contents", 30 "//blimp/client/core/contents",
31 "//blimp/client/core/render_widget", 31 "//blimp/client/core/render_widget",
(...skipping 13 matching lines...) Expand all
45 "app/blimp_discardable_memory_allocator.cc", 45 "app/blimp_discardable_memory_allocator.cc",
46 "app/blimp_discardable_memory_allocator.h", 46 "app/blimp_discardable_memory_allocator.h",
47 "app/blimp_startup.cc", 47 "app/blimp_startup.cc",
48 "app/blimp_startup.h", 48 "app/blimp_startup.h",
49 "app/compositor/browser_compositor.cc", 49 "app/compositor/browser_compositor.cc",
50 "app/compositor/browser_compositor.h", 50 "app/compositor/browser_compositor.h",
51 ] 51 ]
52 52
53 public_deps = [ 53 public_deps = [
54 ":session", 54 ":session",
55 "//blimp/client/core:switches",
56 "//blimp/client/core/compositor", 55 "//blimp/client/core/compositor",
56 "//blimp/client/core/switches",
57 "//blimp/client/support", 57 "//blimp/client/support",
58 "//cc", 58 "//cc",
59 "//cc/surfaces", 59 "//cc/surfaces",
60 "//components/safe_json", 60 "//components/safe_json",
61 "//components/url_formatter", 61 "//components/url_formatter",
62 "//skia", 62 "//skia",
63 "//ui/events", 63 "//ui/events",
64 "//ui/gfx/geometry", 64 "//ui/gfx/geometry",
65 ] 65 ]
66 66
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 ] 279 ]
280 } 280 }
281 281
282 android_library("blimp_test_java") { 282 android_library("blimp_test_java") {
283 testonly = true 283 testonly = true
284 284
285 deps = [ 285 deps = [
286 ":blimp_java", 286 ":blimp_java",
287 "//base:base_java", 287 "//base:base_java",
288 "//base:base_java_test_support", 288 "//base:base_java_test_support",
289 "//blimp/client/core:common_java", 289 "//blimp/client/core/common:common_java",
290 "//blimp/client/core/contents:contents_java", 290 "//blimp/client/core/contents:contents_java",
291 "//blimp/client/core/settings:settings_java", 291 "//blimp/client/core/settings:settings_java",
292 "//blimp/client/public:public_headers_java", 292 "//blimp/client/public:public_headers_java",
293 "//components/signin/core/browser/android:java", 293 "//components/signin/core/browser/android:java",
294 "//components/sync/android:sync_java", 294 "//components/sync/android:sync_java",
295 "//third_party/android_tools:android_support_v7_appcompat_java", 295 "//third_party/android_tools:android_support_v7_appcompat_java",
296 "//ui/android:ui_java", 296 "//ui/android:ui_java",
297 google_play_services_library, 297 google_play_services_library,
298 ] 298 ]
299 299
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 instrumentation_test_apk("blimp_test_apk") { 368 instrumentation_test_apk("blimp_test_apk") {
369 apk_name = "BlimpTest" 369 apk_name = "BlimpTest"
370 apk_under_test = ":blimp_apk" 370 apk_under_test = ":blimp_apk"
371 android_manifest = blimp_test_apk_manifest 371 android_manifest = blimp_test_apk_manifest
372 android_manifest_dep = ":blimp_test_apk_manifest" 372 android_manifest_dep = ":blimp_test_apk_manifest"
373 deps = [ 373 deps = [
374 ":blimp_test_java", 374 ":blimp_test_java",
375 ] 375 ]
376 } 376 }
377 } 377 }
OLDNEW
« no previous file with comments | « no previous file | blimp/client/README.md » ('j') | blimp/client/core/context/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698