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

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

Issue 1809183002: gpu_messages.h => gpu/ipc/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make win_clang_x64_dbg happy by making command_buffer_traits an alias to gpu component on compnet b… 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_internal.gyp ('k') | no next file » | 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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 ":proxy_implementation", 271 ":proxy_implementation",
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:client_sources_for_ppapi",
282 "//gpu/ipc/common",
283 "//ipc", 282 "//ipc",
284 "//media:shared_memory_support", 283 "//media:shared_memory_support",
285 "//ppapi/c", 284 "//ppapi/c",
286 "//ppapi/shared_impl", 285 "//ppapi/shared_impl",
287 ] 286 ]
288 287
289 if (!is_nacl) { 288 if (!is_nacl) {
290 deps += [ 289 deps += [
291 "//base/third_party/dynamic_annotations", 290 "//base/third_party/dynamic_annotations",
292 "//gin", 291 "//gin",
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
336 "var_serialization_rules.h", 335 "var_serialization_rules.h",
337 ] 336 ]
338 if (is_nacl) { 337 if (is_nacl) {
339 sources -= [ "serialized_flash_menu.cc" ] 338 sources -= [ "serialized_flash_menu.cc" ]
340 } 339 }
341 340
342 configs += [ ":proxy_implementation" ] 341 configs += [ ":proxy_implementation" ]
343 342
344 deps = [ 343 deps = [
345 "//base", 344 "//base",
346 "//gpu/ipc/common", 345 "//gpu/ipc/common:command_buffer_traits",
347 "//ipc", 346 "//ipc",
348 "//ppapi/c", 347 "//ppapi/c",
349 "//ppapi/shared_impl", 348 "//ppapi/shared_impl",
350 ] 349 ]
351 if (!is_nacl) { 350 if (!is_nacl) {
352 deps += [ "//skia" ] 351 deps += [ "//skia" ]
353 } 352 }
354 } 353 }
355 354
356 source_set("test_support") { 355 source_set("test_support") {
357 testonly = true 356 testonly = true
358 357
359 sources = [ 358 sources = [
360 "ppapi_proxy_test.cc", 359 "ppapi_proxy_test.cc",
361 "ppapi_proxy_test.h", 360 "ppapi_proxy_test.h",
362 "resource_message_test_sink.cc", 361 "resource_message_test_sink.cc",
363 "resource_message_test_sink.h", 362 "resource_message_test_sink.h",
364 ] 363 ]
365 364
366 deps = [ 365 deps = [
367 "//base/test:test_support", 366 "//base/test:test_support",
368 "//ipc", 367 "//ipc",
369 "//ipc:test_support", 368 "//ipc:test_support",
370 "//ppapi/proxy", 369 "//ppapi/proxy",
371 "//ppapi/shared_impl", 370 "//ppapi/shared_impl",
372 "//testing/gmock", 371 "//testing/gmock",
373 "//testing/gtest", 372 "//testing/gtest",
374 ] 373 ]
375 } 374 }
OLDNEW
« no previous file with comments | « ppapi/ppapi_internal.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698