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

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

Issue 1053203003: Work on Windows GN component build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 config("proxy_implementation") { 5 config("proxy_implementation") {
6 defines = [ "PPAPI_PROXY_IMPLEMENTATION" ] 6 defines = [ "PPAPI_PROXY_IMPLEMENTATION" ]
7 } 7 }
8 8
9 component("proxy") { 9 component("proxy") {
10 output_name = "ppapi_proxy" 10 output_name = "ppapi_proxy"
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 263
264 configs += [ ":proxy_implementation" ] 264 configs += [ ":proxy_implementation" ]
265 265
266 deps = [ 266 deps = [
267 "//base", 267 "//base",
268 "//gpu/command_buffer/client:gles2_implementation", 268 "//gpu/command_buffer/client:gles2_implementation",
269 "//gpu/ipc", 269 "//gpu/ipc",
270 "//ipc", 270 "//ipc",
271 "//media:shared_memory_support", 271 "//media:shared_memory_support",
272 "//ppapi/c", 272 "//ppapi/c",
273 "//ppapi/proxy:ipc", 273 "//ppapi/proxy:ipc_sources",
274 "//ppapi/shared_impl", 274 "//ppapi/shared_impl",
275 "//third_party/icu", 275 "//third_party/icu",
276 ] 276 ]
277 277
278 if (is_nacl) { 278 if (is_nacl) {
279 deps += [ 279 deps += [
280 "//ui/events:latency_info", 280 "//ui/events:latency_info",
281 "//mojo/nacl:mojo", 281 "//mojo/nacl:mojo",
282 ] 282 ]
283 } else { 283 } else {
284 deps += [ 284 deps += [
285 "//base/third_party/dynamic_annotations", 285 "//base/third_party/dynamic_annotations",
286 "//gin", 286 "//gin",
287 "//skia", 287 "//skia",
288 "//ui/events:events_base", 288 "//ui/events:events_base",
289 "//ui/surface", 289 "//ui/surface",
290 ] 290 ]
291 } 291 }
292 } 292 }
293 293
294 source_set("ipc") { 294 group("ipc") {
295 if (is_component_build) {
296 public_deps = [
297 "//ppapi/proxy",
298 ]
299 } else {
300 public_deps = [
301 ":ipc_sources",
302 ]
303 }
304 }
305
306 source_set("ipc_sources") {
295 sources = [ 307 sources = [
296 "nacl_message_scanner.cc", 308 "nacl_message_scanner.cc",
297 "nacl_message_scanner.h", 309 "nacl_message_scanner.h",
298 "ppapi_messages.cc", 310 "ppapi_messages.cc",
299 "ppapi_messages.h", 311 "ppapi_messages.h",
300 "ppapi_param_traits.cc", 312 "ppapi_param_traits.cc",
301 "ppapi_param_traits.h", 313 "ppapi_param_traits.h",
302 "raw_var_data.cc", 314 "raw_var_data.cc",
303 "raw_var_data.h", 315 "raw_var_data.h",
304 "resource_message_params.cc", 316 "resource_message_params.cc",
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 deps = [ 359 deps = [
348 "//base/test:test_support", 360 "//base/test:test_support",
349 "//ipc", 361 "//ipc",
350 "//ipc:test_support", 362 "//ipc:test_support",
351 "//ppapi/proxy", 363 "//ppapi/proxy",
352 "//ppapi/shared_impl", 364 "//ppapi/shared_impl",
353 "//testing/gmock", 365 "//testing/gmock",
354 "//testing/gtest", 366 "//testing/gtest",
355 ] 367 ]
356 } 368 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698