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

Side by Side Diff: ppapi/proxy/BUILD.gn

Issue 1714903003: mustash: Move gpu/ipc to gpu/ipc/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Win64 build Created 4 years, 9 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 | « ppapi/ppapi_tests.gypi ('k') | ppapi/proxy/ppapi_messages.h » ('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/nacl/config.gni") 5 import("//build/config/nacl/config.gni")
6 6
7 config("proxy_implementation") { 7 config("proxy_implementation") {
8 defines = [ "PPAPI_PROXY_IMPLEMENTATION" ] 8 defines = [ "PPAPI_PROXY_IMPLEMENTATION" ]
9 } 9 }
10 10
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 "//build/config:precompiled_headers", 272 "//build/config:precompiled_headers",
273 ] 273 ]
274 274
275 public_deps = [ 275 public_deps = [
276 "//ppapi/proxy:ipc_sources", 276 "//ppapi/proxy:ipc_sources",
277 ] 277 ]
278 278
279 deps = [ 279 deps = [
280 "//base", 280 "//base",
281 "//gpu/command_buffer/client:gles2_implementation", 281 "//gpu/command_buffer/client:gles2_implementation",
282 "//gpu/ipc", 282 "//gpu/ipc/common",
283 "//ipc", 283 "//ipc",
284 "//media:shared_memory_support", 284 "//media:shared_memory_support",
285 "//ppapi/c", 285 "//ppapi/c",
286 "//ppapi/shared_impl", 286 "//ppapi/shared_impl",
287 ] 287 ]
288 288
289 if (!is_nacl) { 289 if (!is_nacl) {
290 deps += [ 290 deps += [
291 "//base/third_party/dynamic_annotations", 291 "//base/third_party/dynamic_annotations",
292 "//gin", 292 "//gin",
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
336 "var_serialization_rules.h", 336 "var_serialization_rules.h",
337 ] 337 ]
338 if (is_nacl) { 338 if (is_nacl) {
339 sources -= [ "serialized_flash_menu.cc" ] 339 sources -= [ "serialized_flash_menu.cc" ]
340 } 340 }
341 341
342 configs += [ ":proxy_implementation" ] 342 configs += [ ":proxy_implementation" ]
343 343
344 deps = [ 344 deps = [
345 "//base", 345 "//base",
346 "//gpu/ipc", 346 "//gpu/ipc/common",
347 "//ipc", 347 "//ipc",
348 "//ppapi/c", 348 "//ppapi/c",
349 "//ppapi/shared_impl", 349 "//ppapi/shared_impl",
350 ] 350 ]
351 if (!is_nacl) { 351 if (!is_nacl) {
352 deps += [ "//skia" ] 352 deps += [ "//skia" ]
353 } 353 }
354 } 354 }
355 355
356 source_set("test_support") { 356 source_set("test_support") {
357 testonly = true 357 testonly = true
358 358
359 sources = [ 359 sources = [
360 "ppapi_proxy_test.cc", 360 "ppapi_proxy_test.cc",
361 "ppapi_proxy_test.h", 361 "ppapi_proxy_test.h",
362 "resource_message_test_sink.cc", 362 "resource_message_test_sink.cc",
363 "resource_message_test_sink.h", 363 "resource_message_test_sink.h",
364 ] 364 ]
365 365
366 deps = [ 366 deps = [
367 "//base/test:test_support", 367 "//base/test:test_support",
368 "//ipc", 368 "//ipc",
369 "//ipc:test_support", 369 "//ipc:test_support",
370 "//ppapi/proxy", 370 "//ppapi/proxy",
371 "//ppapi/shared_impl", 371 "//ppapi/shared_impl",
372 "//testing/gmock", 372 "//testing/gmock",
373 "//testing/gtest", 373 "//testing/gtest",
374 ] 374 ]
375 } 375 }
OLDNEW
« no previous file with comments | « ppapi/ppapi_tests.gypi ('k') | ppapi/proxy/ppapi_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698