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

Side by Side Diff: ppapi/ppapi.gyp

Issue 6279003: Move ppapi audio interface out of dev, but... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « ppapi/examples/audio/audio.cc ('k') | ppapi/proxy/dispatcher.cc » ('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 (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 { 5 {
6 'includes': [ 6 'includes': [
7 '../third_party/mesa/mesa.gypi', 7 '../third_party/mesa/mesa.gypi',
8 ], 8 ],
9 'variables': { 9 'variables': {
10 'chromium_code': 1, # Use higher warning level. 10 'chromium_code': 1, # Use higher warning level.
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 'c/pp_macros.h', 44 'c/pp_macros.h',
45 'c/pp_module.h', 45 'c/pp_module.h',
46 'c/pp_point.h', 46 'c/pp_point.h',
47 'c/pp_rect.h', 47 'c/pp_rect.h',
48 'c/pp_resource.h', 48 'c/pp_resource.h',
49 'c/pp_size.h', 49 'c/pp_size.h',
50 'c/pp_stdint.h', 50 'c/pp_stdint.h',
51 'c/pp_time.h', 51 'c/pp_time.h',
52 'c/pp_var.h', 52 'c/pp_var.h',
53 'c/ppb.h', 53 'c/ppb.h',
54 'c/ppb_audio.h',
55 'c/ppb_audio_config.h',
54 'c/ppb_core.h', 56 'c/ppb_core.h',
55 'c/ppb_class.h', 57 'c/ppb_class.h',
56 'c/ppb_graphics_2d.h', 58 'c/ppb_graphics_2d.h',
57 'c/ppb_image_data.h', 59 'c/ppb_image_data.h',
58 'c/ppb_instance.h', 60 'c/ppb_instance.h',
59 'c/ppb_url_loader.h', 61 'c/ppb_url_loader.h',
60 'c/ppb_url_request_info.h', 62 'c/ppb_url_request_info.h',
61 'c/ppb_url_response_info.h', 63 'c/ppb_url_response_info.h',
62 'c/ppb_var.h', 64 'c/ppb_var.h',
63 'c/ppp.h', 65 'c/ppp.h',
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 'c/private/ppb_flash.h', 109 'c/private/ppb_flash.h',
108 'c/private/ppb_nacl_private.h', 110 'c/private/ppb_nacl_private.h',
109 'c/private/ppb_pdf.h', 111 'c/private/ppb_pdf.h',
110 112
111 # Deprecated interfaces. 113 # Deprecated interfaces.
112 'c/dev/deprecated_bool.h', 114 'c/dev/deprecated_bool.h',
113 'c/dev/ppb_var_deprecated.h', 115 'c/dev/ppb_var_deprecated.h',
114 'c/dev/ppp_class_deprecated.h', 116 'c/dev/ppp_class_deprecated.h',
115 117
116 # Trusted interfaces. 118 # Trusted interfaces.
119 'c/trusted/ppb_audio_trusted.h',
117 'c/trusted/ppb_image_data_trusted.h', 120 'c/trusted/ppb_image_data_trusted.h',
118 'c/trusted/ppb_url_loader_trusted.h', 121 'c/trusted/ppb_url_loader_trusted.h',
119 ], 122 ],
120 }, 123 },
121 { 124 {
122 'target_name': 'ppapi_cpp_objects', 125 'target_name': 'ppapi_cpp_objects',
123 'type': 'static_library', 126 'type': 'static_library',
124 'dependencies': [ 127 'dependencies': [
125 'ppapi_c' 128 'ppapi_c'
126 ], 129 ],
127 'include_dirs': [ 130 'include_dirs': [
128 '..', 131 '..',
129 ], 132 ],
130 'sources': [ 133 'sources': [
134 'cpp/audio.cc',
135 'cpp/audio.h',
136 'cpp/audio_config.cc',
137 'cpp/audio_config.h',
131 'cpp/common.h', 138 'cpp/common.h',
132 'cpp/completion_callback.h', 139 'cpp/completion_callback.h',
133 'cpp/core.cc', 140 'cpp/core.cc',
134 'cpp/core.h', 141 'cpp/core.h',
135 'cpp/graphics_2d.cc', 142 'cpp/graphics_2d.cc',
136 'cpp/graphics_2d.h', 143 'cpp/graphics_2d.h',
137 'cpp/image_data.cc', 144 'cpp/image_data.cc',
138 'cpp/image_data.h', 145 'cpp/image_data.h',
139 'cpp/instance.cc', 146 'cpp/instance.cc',
140 'cpp/instance.h', 147 'cpp/instance.h',
(...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after
680 ['OS=="win"', { 687 ['OS=="win"', {
681 }], 688 }],
682 ['OS=="linux"', { 689 ['OS=="linux"', {
683 }], 690 }],
684 ['OS=="mac"', { 691 ['OS=="mac"', {
685 }] 692 }]
686 ], 693 ],
687 }, 694 },
688 ], 695 ],
689 } 696 }
OLDNEW
« no previous file with comments | « ppapi/examples/audio/audio.cc ('k') | ppapi/proxy/dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698