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

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

Issue 1128023009: ppapi: define PPB_AudioEncoder API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: bbudge's nits & api release bump Created 5 years, 3 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"
11 11
12 sources = [ 12 sources = [
13 # Take some standalone files from the C++ wrapper allowing us to more 13 # Take some standalone files from the C++ wrapper allowing us to more
14 # easily make async callbacks in the proxy. We can't depend on the 14 # easily make async callbacks in the proxy. We can't depend on the
15 # full C++ wrappers at this layer since the C++ wrappers expect 15 # full C++ wrappers at this layer since the C++ wrappers expect
16 # symbols defining the globals for "being a plugin" which we are not. 16 # symbols defining the globals for "being a plugin" which we are not.
17 # These callback files are standalone. 17 # These callback files are standalone.
18 "../cpp/completion_callback.h", 18 "../cpp/completion_callback.h",
19 "../utility/completion_callback_factory.h", 19 "../utility/completion_callback_factory.h",
20 "audio_buffer_resource.cc", 20 "audio_buffer_resource.cc",
21 "audio_buffer_resource.h", 21 "audio_buffer_resource.h",
22 "audio_encoder_resource.cc",
23 "audio_encoder_resource.h",
22 "broker_resource.cc", 24 "broker_resource.cc",
23 "broker_resource.h", 25 "broker_resource.h",
24 "camera_capabilities_resource.cc", 26 "camera_capabilities_resource.cc",
25 "camera_capabilities_resource.h", 27 "camera_capabilities_resource.h",
26 "camera_device_resource.cc", 28 "camera_device_resource.cc",
27 "camera_device_resource.h", 29 "camera_device_resource.h",
28 "compositor_layer_resource.cc", 30 "compositor_layer_resource.cc",
29 "compositor_layer_resource.h", 31 "compositor_layer_resource.h",
30 "compositor_resource.cc", 32 "compositor_resource.cc",
31 "compositor_resource.h", 33 "compositor_resource.h",
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 deps = [ 360 deps = [
359 "//base/test:test_support", 361 "//base/test:test_support",
360 "//ipc", 362 "//ipc",
361 "//ipc:test_support", 363 "//ipc:test_support",
362 "//ppapi/proxy", 364 "//ppapi/proxy",
363 "//ppapi/shared_impl", 365 "//ppapi/shared_impl",
364 "//testing/gmock", 366 "//testing/gmock",
365 "//testing/gtest", 367 "//testing/gtest",
366 ] 368 ]
367 } 369 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698