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

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: Added new test runner with Mojo initialization 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 }
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 source_set("blimp_client_unit_tests") { 81 source_set("blimp_client_unit_tests") {
82 testonly = true 82 testonly = true
83 83
84 sources = [] 84 sources = []
85 85
86 deps = [ 86 deps = [
87 ":client", 87 ":client",
88 ":session", 88 ":session",
89 ":switches", 89 ":switches",
90 "//base", 90 "//base",
91 "//base/test:run_all_unittests",
92 "//base/test:test_support", 91 "//base/test:test_support",
93 "//blimp/common", 92 "//blimp/common",
94 "//testing/gmock", 93 "//testing/gmock",
95 "//testing/gtest", 94 "//testing/gtest",
96 ] 95 ]
97 96
98 data = [] 97 data = []
99 98
100 # TODO(dtrainor): Fix the test harness to allow this to run on Android. 99 # TODO(dtrainor): Fix the test harness to allow this to run on Android.
101 # See crbug.com/588240. 100 # See crbug.com/588240.
(...skipping 15 matching lines...) Expand all
117 source_set("app_unit_tests") { 116 source_set("app_unit_tests") {
118 testonly = true 117 testonly = true
119 118
120 sources = [ 119 sources = [
121 "app/blimp_discardable_memory_allocator_unittest.cc", 120 "app/blimp_discardable_memory_allocator_unittest.cc",
122 ] 121 ]
123 122
124 deps = [ 123 deps = [
125 ":client", 124 ":client",
126 "//base", 125 "//base",
127 "//base/test:run_all_unittests",
128 "//base/test:test_support", 126 "//base/test:test_support",
129 "//testing/gmock", 127 "//testing/gmock",
130 "//testing/gtest", 128 "//testing/gtest",
131 ] 129 ]
132 } 130 }
133 131
134 source_set("feature") { 132 source_set("feature") {
135 sources = [ 133 sources = [
136 "feature/ime_feature.cc", 134 "feature/ime_feature.cc",
137 "feature/ime_feature.h", 135 "feature/ime_feature.h",
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 "feature/compositor/blimp_compositor_manager_unittest.cc", 245 "feature/compositor/blimp_compositor_manager_unittest.cc",
248 "feature/navigation_feature_unittest.cc", 246 "feature/navigation_feature_unittest.cc",
249 "feature/render_widget_feature_unittest.cc", 247 "feature/render_widget_feature_unittest.cc",
250 "feature/tab_control_feature_unittest.cc", 248 "feature/tab_control_feature_unittest.cc",
251 ] 249 ]
252 250
253 deps = [ 251 deps = [
254 ":compositor", 252 ":compositor",
255 ":test_support", 253 ":test_support",
256 "//base", 254 "//base",
257 "//base/test:run_all_unittests",
258 "//base/test:test_support", 255 "//base/test:test_support",
259 "//blimp/common", 256 "//blimp/common",
260 "//blimp/common/proto", 257 "//blimp/common/proto",
261 "//blimp/net", 258 "//blimp/net",
262 "//blimp/net:test_support", 259 "//blimp/net:test_support",
263 "//cc/proto", 260 "//cc/proto",
264 "//net", 261 "//net",
265 "//net:test_support", 262 "//net:test_support",
266 "//skia", 263 "//skia",
267 "//testing/gmock", 264 "//testing/gmock",
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
525 apk_name = "BlimpTest" 522 apk_name = "BlimpTest"
526 apk_under_test = ":blimp_apk" 523 apk_under_test = ":blimp_apk"
527 android_manifest = blimp_test_apk_manifest 524 android_manifest = blimp_test_apk_manifest
528 deps = [ 525 deps = [
529 ":blimp_test_apk_manifest", 526 ":blimp_test_apk_manifest",
530 ":blimp_test_java", 527 ":blimp_test_java",
531 google_play_services_resources, 528 google_play_services_resources,
532 ] 529 ]
533 } 530 }
534 } 531 }
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