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

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

Issue 1985863002: Incorporate BlobChannel into Blimp image encode/decode pipeline. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blobchannel-helium
Patch Set: wez and nyquist feedback Created 4 years, 6 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
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/assignment_source.cc", 14 "session/assignment_source.cc",
15 "session/assignment_source.h", 15 "session/assignment_source.h",
16 "session/blimp_client_session.cc", 16 "session/blimp_client_session.cc",
17 "session/blimp_client_session.h", 17 "session/blimp_client_session.h",
18 ] 18 ]
19 19
20 public_deps = [ 20 public_deps = [
21 ":feature", 21 ":feature",
22 ":switches", 22 ":switches",
23 "//components/safe_json", 23 "//components/safe_json",
24 "//ui/events", 24 "//ui/events",
25 ] 25 ]
26 26
27 deps = [ 27 deps = [
28 ":compositor",
28 "//base", 29 "//base",
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
38 source_set("client") { 39 source_set("client") {
39 sources = [ 40 sources = [
40 "app/blimp_discardable_memory_allocator.cc", 41 "app/blimp_discardable_memory_allocator.cc",
41 "app/blimp_discardable_memory_allocator.h", 42 "app/blimp_discardable_memory_allocator.h",
42 "app/blimp_startup.cc", 43 "app/blimp_startup.cc",
43 "app/blimp_startup.h", 44 "app/blimp_startup.h",
44 ] 45 ]
45 46
46 public_deps = [ 47 public_deps = [
47 ":compositor",
48 ":session", 48 ":session",
49 ":switches", 49 ":switches",
50 "//components/safe_json", 50 "//components/safe_json",
51 "//components/url_formatter", 51 "//components/url_formatter",
52 "//skia",
52 "//ui/events", 53 "//ui/events",
53 ] 54 ]
54 55
55 deps = [ 56 deps = [
57 ":compositor",
56 "//base", 58 "//base",
57 "//blimp/common", 59 "//blimp/common",
58 "//blimp/common/proto", 60 "//blimp/common/proto",
59 "//blimp/net", 61 "//blimp/net",
60 "//cc", 62 "//cc",
61 "//gpu/command_buffer/client:gles2_implementation", 63 "//gpu/command_buffer/client:gles2_implementation",
62 "//gpu/skia_bindings", 64 "//gpu/skia_bindings",
63 "//net", 65 "//net",
64 "//third_party/libwebp", 66 "//third_party/libwebp",
65 "//ui/gfx/geometry", 67 "//ui/gfx/geometry",
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 "//ui/base/ime:text_input_types", 229 "//ui/base/ime:text_input_types",
228 "//ui/events:gesture_detection", 230 "//ui/events:gesture_detection",
229 "//ui/events/blink", 231 "//ui/events/blink",
230 "//ui/events/gestures/blink", 232 "//ui/events/gestures/blink",
231 "//ui/gl", 233 "//ui/gl",
232 ] 234 ]
233 235
234 public_deps = [ 236 public_deps = [
235 ":feature", 237 ":feature",
236 "//blimp/common/proto", 238 "//blimp/common/proto",
239 "//skia",
237 ] 240 ]
238 } 241 }
239 242
240 source_set("feature_unit_tests") { 243 source_set("feature_unit_tests") {
241 testonly = true 244 testonly = true
242 245
243 sources = [ 246 sources = [
244 "feature/compositor/blimp_compositor_manager_unittest.cc", 247 "feature/compositor/blimp_compositor_manager_unittest.cc",
245 "feature/navigation_feature_unittest.cc", 248 "feature/navigation_feature_unittest.cc",
246 "feature/render_widget_feature_unittest.cc", 249 "feature/render_widget_feature_unittest.cc",
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
520 apk_name = "BlimpTest" 523 apk_name = "BlimpTest"
521 apk_under_test = ":blimp_apk" 524 apk_under_test = ":blimp_apk"
522 android_manifest = blimp_test_apk_manifest 525 android_manifest = blimp_test_apk_manifest
523 deps = [ 526 deps = [
524 ":blimp_test_apk_manifest", 527 ":blimp_test_apk_manifest",
525 ":blimp_test_java", 528 ":blimp_test_java",
526 google_play_services_resources, 529 google_play_services_resources,
527 ] 530 ]
528 } 531 }
529 } 532 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698