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

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

Issue 1151973003: ppapi: implement PPB_AudioEncoder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More Windows fixes in proxy code Created 5 years, 6 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/shared_impl/resource.h ('k') | ppapi/thunk/interfaces_ppb_public_dev_channel.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 source_set("thunk") { 5 source_set("thunk") {
6 # In GYP this is the same target as shared_impl. In GN these are split apart 6 # In GYP this is the same target as shared_impl. In GN these are split apart
7 # for clarity but to get component builds correct, targets must only depend 7 # for clarity but to get component builds correct, targets must only depend
8 # on these via the shared_impl component. 8 # on these via the shared_impl component.
9 # TODO(brettw) separate these when GYP compat is no longer required. 9 # TODO(brettw) separate these when GYP compat is no longer required.
10 visibility = [ "//ppapi/shared_impl" ] 10 visibility = [ "//ppapi/shared_impl" ]
11 11
12 sources = [ 12 sources = [
13 "enter.cc", 13 "enter.cc",
14 "enter.h", 14 "enter.h",
15 "ppb_audio_api.h", 15 "ppb_audio_api.h",
16 "ppb_audio_buffer_api.h", 16 "ppb_audio_buffer_api.h",
17 "ppb_audio_buffer_thunk.cc", 17 "ppb_audio_buffer_thunk.cc",
18 "ppb_audio_config_api.h", 18 "ppb_audio_config_api.h",
19 "ppb_audio_config_thunk.cc", 19 "ppb_audio_config_thunk.cc",
20 "ppb_audio_encoder_api.h",
21 "ppb_audio_encoder_thunk.cc",
20 "ppb_audio_input_api.h", 22 "ppb_audio_input_api.h",
21 "ppb_audio_thunk.cc", 23 "ppb_audio_thunk.cc",
22 "ppb_broker_api.h", 24 "ppb_broker_api.h",
23 "ppb_browser_font_trusted_api.h", 25 "ppb_browser_font_trusted_api.h",
24 "ppb_buffer_api.h", 26 "ppb_buffer_api.h",
25 "ppb_camera_capabilities_api.h", 27 "ppb_camera_capabilities_api.h",
26 "ppb_camera_capabilities_private_thunk.cc", 28 "ppb_camera_capabilities_private_thunk.cc",
27 "ppb_camera_device_api.h", 29 "ppb_camera_device_api.h",
28 "ppb_camera_device_private_thunk.cc", 30 "ppb_camera_device_private_thunk.cc",
29 "ppb_compositor_api.h", 31 "ppb_compositor_api.h",
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 } 191 }
190 192
191 defines = [ 193 defines = [
192 # This target goes in the same library as shared_impl (in GYP they are the 194 # This target goes in the same library as shared_impl (in GYP they are the
193 # same). 195 # same).
194 "PPAPI_SHARED_IMPLEMENTATION", 196 "PPAPI_SHARED_IMPLEMENTATION",
195 197
196 "PPAPI_THUNK_IMPLEMENTATION", 198 "PPAPI_THUNK_IMPLEMENTATION",
197 ] 199 ]
198 } 200 }
OLDNEW
« no previous file with comments | « ppapi/shared_impl/resource.h ('k') | ppapi/thunk/interfaces_ppb_public_dev_channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698