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

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

Issue 2033013003: Use shared memory for moving data over BlobChannel Mojo interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blobchannel-master
Patch Set: IPC owners file added. Created 4 years, 5 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 | « blimp/BUILD.gn ('k') | blimp/engine/BUILD.gn » ('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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 source_set("blimp_client_unit_tests") { 82 source_set("blimp_client_unit_tests") {
83 testonly = true 83 testonly = true
84 84
85 sources = [] 85 sources = []
86 86
87 deps = [ 87 deps = [
88 ":client", 88 ":client",
89 ":session", 89 ":session",
90 ":switches", 90 ":switches",
91 "//base", 91 "//base",
92 "//base/test:run_all_unittests",
93 "//base/test:test_support", 92 "//base/test:test_support",
94 "//blimp/common", 93 "//blimp/common",
95 "//testing/gmock", 94 "//testing/gmock",
96 "//testing/gtest", 95 "//testing/gtest",
97 ] 96 ]
98 97
99 data = [] 98 data = []
100 99
101 # TODO(dtrainor): Fix the test harness to allow this to run on Android. 100 # TODO(dtrainor): Fix the test harness to allow this to run on Android.
102 # See crbug.com/588240. 101 # See crbug.com/588240.
(...skipping 15 matching lines...) Expand all
118 source_set("app_unit_tests") { 117 source_set("app_unit_tests") {
119 testonly = true 118 testonly = true
120 119
121 sources = [ 120 sources = [
122 "app/blimp_discardable_memory_allocator_unittest.cc", 121 "app/blimp_discardable_memory_allocator_unittest.cc",
123 ] 122 ]
124 123
125 deps = [ 124 deps = [
126 ":client", 125 ":client",
127 "//base", 126 "//base",
128 "//base/test:run_all_unittests",
129 "//base/test:test_support", 127 "//base/test:test_support",
130 "//testing/gmock", 128 "//testing/gmock",
131 "//testing/gtest", 129 "//testing/gtest",
132 ] 130 ]
133 } 131 }
134 132
135 source_set("feature") { 133 source_set("feature") {
136 sources = [ 134 sources = [
137 "feature/ime_feature.cc", 135 "feature/ime_feature.cc",
138 "feature/ime_feature.h", 136 "feature/ime_feature.h",
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 "feature/compositor/blimp_compositor_manager_unittest.cc", 249 "feature/compositor/blimp_compositor_manager_unittest.cc",
252 "feature/navigation_feature_unittest.cc", 250 "feature/navigation_feature_unittest.cc",
253 "feature/render_widget_feature_unittest.cc", 251 "feature/render_widget_feature_unittest.cc",
254 "feature/tab_control_feature_unittest.cc", 252 "feature/tab_control_feature_unittest.cc",
255 ] 253 ]
256 254
257 deps = [ 255 deps = [
258 ":compositor", 256 ":compositor",
259 ":test_support", 257 ":test_support",
260 "//base", 258 "//base",
261 "//base/test:run_all_unittests",
262 "//base/test:test_support", 259 "//base/test:test_support",
263 "//blimp/common", 260 "//blimp/common",
264 "//blimp/common/proto", 261 "//blimp/common/proto",
265 "//blimp/net", 262 "//blimp/net",
266 "//blimp/net:test_support", 263 "//blimp/net:test_support",
267 "//blimp/test:support", 264 "//blimp/test:support",
268 "//cc/proto", 265 "//cc/proto",
269 "//net", 266 "//net",
270 "//net:test_support", 267 "//net:test_support",
271 "//skia", 268 "//skia",
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
537 instrumentation_test_apk("blimp_test_apk") { 534 instrumentation_test_apk("blimp_test_apk") {
538 apk_name = "BlimpTest" 535 apk_name = "BlimpTest"
539 apk_under_test = ":blimp_apk" 536 apk_under_test = ":blimp_apk"
540 android_manifest = blimp_test_apk_manifest 537 android_manifest = blimp_test_apk_manifest
541 android_manifest_dep = ":blimp_test_apk_manifest" 538 android_manifest_dep = ":blimp_test_apk_manifest"
542 deps = [ 539 deps = [
543 ":blimp_test_java", 540 ":blimp_test_java",
544 ] 541 ]
545 } 542 }
546 } 543 }
OLDNEW
« no previous file with comments | « blimp/BUILD.gn ('k') | blimp/engine/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698