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

Side by Side Diff: ppapi/BUILD.gn

Issue 2033243003: Use Mojo pipes to signal sync IPC events (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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/features.gni") 5 import("//build/config/features.gni")
6 6
7 assert(!is_android || enable_plugins, 7 assert(!is_android || enable_plugins,
8 "//ppapi should not be referenced when is_android && !enable_plugins") 8 "//ppapi should not be referenced when is_android && !enable_plugins")
9 9
10 if (is_mac) { 10 if (is_mac) {
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 "shared_impl/var_tracker_unittest.cc", 193 "shared_impl/var_tracker_unittest.cc",
194 ] 194 ]
195 195
196 deps = [ 196 deps = [
197 "//base/test:run_all_unittests", 197 "//base/test:run_all_unittests",
198 "//base/test:test_support", 198 "//base/test:test_support",
199 "//gpu/ipc/common:command_buffer_traits", 199 "//gpu/ipc/common:command_buffer_traits",
200 "//ipc", 200 "//ipc",
201 "//ipc:test_support", 201 "//ipc:test_support",
202 "//media:shared_memory_support", 202 "//media:shared_memory_support",
203 "//mojo/edk/system",
203 "//ppapi/host", 204 "//ppapi/host",
204 "//ppapi/proxy", 205 "//ppapi/proxy",
205 "//ppapi/proxy:test_support", 206 "//ppapi/proxy:test_support",
206 "//ppapi/shared_impl", 207 "//ppapi/shared_impl",
207 "//ppapi/shared_impl:test_support", 208 "//ppapi/shared_impl:test_support",
208 "//skia", 209 "//skia",
209 "//testing/gmock", 210 "//testing/gmock",
210 "//testing/gtest", 211 "//testing/gtest",
211 "//ui/surface", 212 "//ui/surface",
212 ] 213 ]
213 } 214 }
214 215
215 test("ppapi_perftests") { 216 test("ppapi_perftests") {
216 sources = [ 217 sources = [
217 "proxy/ppapi_perftests.cc", 218 "proxy/ppapi_perftests.cc",
218 "proxy/ppp_messaging_proxy_perftest.cc", 219 "proxy/ppp_messaging_proxy_perftest.cc",
219 ] 220 ]
220 221
221 deps = [ 222 deps = [
222 "//base/test:test_support", 223 "//base/test:test_support",
224 "//mojo/edk/system",
223 "//ppapi/proxy", 225 "//ppapi/proxy",
224 "//ppapi/proxy:test_support", 226 "//ppapi/proxy:test_support",
225 "//ppapi/shared_impl", 227 "//ppapi/shared_impl",
226 "//ppapi/shared_impl:test_support", 228 "//ppapi/shared_impl:test_support",
227 "//testing/gtest", 229 "//testing/gtest",
228 ] 230 ]
229 } 231 }
230 232
231 executable("pepper_hash_for_uma") { 233 executable("pepper_hash_for_uma") {
232 sources = [ 234 sources = [
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 group("ppapi_nacl_tests_all") { 311 group("ppapi_nacl_tests_all") {
310 data_deps = [ 312 data_deps = [
311 ":copy_test_files", 313 ":copy_test_files",
312 ":ppapi_nacl_tests(//build/toolchain/nacl:clang_newlib_${target_cpu})", 314 ":ppapi_nacl_tests(//build/toolchain/nacl:clang_newlib_${target_cpu})",
313 ":ppapi_nacl_tests(//build/toolchain/nacl:glibc_${target_cpu})", 315 ":ppapi_nacl_tests(//build/toolchain/nacl:glibc_${target_cpu})",
314 ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl)", 316 ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl)",
315 ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl_nonsfi)", 317 ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl_nonsfi)",
316 ] 318 ]
317 } 319 }
318 } 320 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698