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

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: dcheng feedback 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
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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 "feature/compositor/blimp_compositor_manager_unittest.cc", 246 "feature/compositor/blimp_compositor_manager_unittest.cc",
249 "feature/navigation_feature_unittest.cc", 247 "feature/navigation_feature_unittest.cc",
250 "feature/render_widget_feature_unittest.cc", 248 "feature/render_widget_feature_unittest.cc",
251 "feature/tab_control_feature_unittest.cc", 249 "feature/tab_control_feature_unittest.cc",
252 ] 250 ]
253 251
254 deps = [ 252 deps = [
255 ":compositor", 253 ":compositor",
256 ":test_support", 254 ":test_support",
257 "//base", 255 "//base",
258 "//base/test:run_all_unittests",
259 "//base/test:test_support", 256 "//base/test:test_support",
260 "//blimp/common", 257 "//blimp/common",
261 "//blimp/common/proto", 258 "//blimp/common/proto",
262 "//blimp/net", 259 "//blimp/net",
263 "//blimp/net:test_support", 260 "//blimp/net:test_support",
264 "//cc/proto", 261 "//cc/proto",
265 "//net", 262 "//net",
266 "//net:test_support", 263 "//net:test_support",
267 "//skia", 264 "//skia",
268 "//testing/gmock", 265 "//testing/gmock",
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
531 instrumentation_test_apk("blimp_test_apk") { 528 instrumentation_test_apk("blimp_test_apk") {
532 apk_name = "BlimpTest" 529 apk_name = "BlimpTest"
533 apk_under_test = ":blimp_apk" 530 apk_under_test = ":blimp_apk"
534 android_manifest = blimp_test_apk_manifest 531 android_manifest = blimp_test_apk_manifest
535 deps = [ 532 deps = [
536 ":blimp_test_apk_manifest", 533 ":blimp_test_apk_manifest",
537 ":blimp_test_java", 534 ":blimp_test_java",
538 ] 535 ]
539 } 536 }
540 } 537 }
OLDNEW
« no previous file with comments | « blimp/BUILD.gn ('k') | blimp/engine/BUILD.gn » ('j') | blimp/engine/mojo/blob_channel.mojom » ('J')

Powered by Google App Engine
This is Rietveld 408576698