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

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

Issue 2376573002: Cleanup blimp/client/core code organization. (Closed)
Patch Set: merged origin/master 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') | 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 "//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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 ] 281 ]
282 } 282 }
283 283
284 android_library("blimp_test_java") { 284 android_library("blimp_test_java") {
285 testonly = true 285 testonly = true
286 286
287 deps = [ 287 deps = [
288 ":blimp_java", 288 ":blimp_java",
289 "//base:base_java", 289 "//base:base_java",
290 "//base:base_java_test_support", 290 "//base:base_java_test_support",
291 "//blimp/client/core:common_java", 291 "//blimp/client/core/common:common_java",
292 "//blimp/client/core/contents:contents_java", 292 "//blimp/client/core/contents:contents_java",
293 "//blimp/client/core/settings:settings_java", 293 "//blimp/client/core/settings:settings_java",
294 "//blimp/client/public:public_headers_java", 294 "//blimp/client/public:public_headers_java",
295 "//components/signin/core/browser/android:java", 295 "//components/signin/core/browser/android:java",
296 "//components/sync/android:sync_java", 296 "//components/sync/android:sync_java",
297 "//third_party/android_tools:android_support_v7_appcompat_java", 297 "//third_party/android_tools:android_support_v7_appcompat_java",
298 "//ui/android:ui_java", 298 "//ui/android:ui_java",
299 google_play_services_library, 299 google_play_services_library,
300 ] 300 ]
301 301
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
370 instrumentation_test_apk("blimp_test_apk") { 370 instrumentation_test_apk("blimp_test_apk") {
371 apk_name = "BlimpTest" 371 apk_name = "BlimpTest"
372 apk_under_test = ":blimp_apk" 372 apk_under_test = ":blimp_apk"
373 android_manifest = blimp_test_apk_manifest 373 android_manifest = blimp_test_apk_manifest
374 android_manifest_dep = ":blimp_test_apk_manifest" 374 android_manifest_dep = ":blimp_test_apk_manifest"
375 deps = [ 375 deps = [
376 ":blimp_test_java", 376 ":blimp_test_java",
377 ] 377 ]
378 } 378 }
379 } 379 }
OLDNEW
« no previous file with comments | « no previous file | blimp/client/README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698