| OLD | NEW |
| 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 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 "ppp_content_decryptor_private_proxy.h", | 258 "ppp_content_decryptor_private_proxy.h", |
| 259 "ppp_instance_private_proxy.cc", | 259 "ppp_instance_private_proxy.cc", |
| 260 "ppp_instance_private_proxy.h", | 260 "ppp_instance_private_proxy.h", |
| 261 "ppp_video_decoder_proxy.cc", | 261 "ppp_video_decoder_proxy.cc", |
| 262 "ppp_video_decoder_proxy.h", | 262 "ppp_video_decoder_proxy.h", |
| 263 "video_capture_resource.cc", | 263 "video_capture_resource.cc", |
| 264 "video_capture_resource.h", | 264 "video_capture_resource.h", |
| 265 ] | 265 ] |
| 266 } | 266 } |
| 267 | 267 |
| 268 configs += [ | 268 configs += [ ":proxy_implementation" ] |
| 269 ":proxy_implementation", | |
| 270 "//build/config:precompiled_headers", | |
| 271 ] | |
| 272 | 269 |
| 273 deps = [ | 270 deps = [ |
| 274 "//base", | 271 "//base", |
| 275 "//gpu/command_buffer/client:gles2_implementation", | 272 "//gpu/command_buffer/client:gles2_implementation", |
| 276 "//gpu/ipc", | 273 "//gpu/ipc", |
| 277 "//ipc", | 274 "//ipc", |
| 278 "//media:shared_memory_support", | 275 "//media:shared_memory_support", |
| 279 "//ppapi/c", | 276 "//ppapi/c", |
| 280 "//ppapi/proxy:ipc_sources", | 277 "//ppapi/proxy:ipc_sources", |
| 281 "//ppapi/shared_impl", | 278 "//ppapi/shared_impl", |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 deps = [ | 360 deps = [ |
| 364 "//base/test:test_support", | 361 "//base/test:test_support", |
| 365 "//ipc", | 362 "//ipc", |
| 366 "//ipc:test_support", | 363 "//ipc:test_support", |
| 367 "//ppapi/proxy", | 364 "//ppapi/proxy", |
| 368 "//ppapi/shared_impl", | 365 "//ppapi/shared_impl", |
| 369 "//testing/gmock", | 366 "//testing/gmock", |
| 370 "//testing/gtest", | 367 "//testing/gtest", |
| 371 ] | 368 ] |
| 372 } | 369 } |
| OLD | NEW |