OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'api', | 8 'target_name': 'api', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'sources': [ | 10 'sources': [ |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 'test.json', | 116 'test.json', |
117 'types.json', | 117 'types.json', |
118 'usb.idl', | 118 'usb.idl', |
119 'virtual_keyboard_private.json', | 119 'virtual_keyboard_private.json', |
120 'web_navigation.json', | 120 'web_navigation.json', |
121 'web_request.json', | 121 'web_request.json', |
122 # Despite the name, this API does not rely on any | 122 # Despite the name, this API does not rely on any |
123 # WebRTC-specific bits and as such does not belong in | 123 # WebRTC-specific bits and as such does not belong in |
124 # the enable_webrtc=0 section below. | 124 # the enable_webrtc=0 section below. |
125 'webrtc_audio_private.idl', | 125 'webrtc_audio_private.idl', |
| 126 'webrtc_logging_private.idl', |
126 'webstore_private.json', | 127 'webstore_private.json', |
127 'webview.json', | 128 'webview.json', |
128 'windows.json', | 129 'windows.json', |
129 ], | 130 ], |
130 }, { # OS=="android" | 131 }, { # OS=="android" |
131 'schema_files': [ | 132 'schema_files': [ |
132 # These should be eliminated. See crbug.com/305852. | 133 # These should be eliminated. See crbug.com/305852. |
133 'activity_log_private.json', | 134 'activity_log_private.json', |
134 'alarms.idl', | 135 'alarms.idl', |
135 'app_runtime.idl', | 136 'app_runtime.idl', |
(...skipping 26 matching lines...) Expand all Loading... |
162 'screenlock_private.idl', | 163 'screenlock_private.idl', |
163 'wallpaper.json', | 164 'wallpaper.json', |
164 'wallpaper_private.json', | 165 'wallpaper_private.json', |
165 ], | 166 ], |
166 }], | 167 }], |
167 ['enable_webrtc==1', { | 168 ['enable_webrtc==1', { |
168 'schema_files': [ | 169 'schema_files': [ |
169 'cast_streaming_rtp_stream.idl', | 170 'cast_streaming_rtp_stream.idl', |
170 'cast_streaming_session.idl', | 171 'cast_streaming_session.idl', |
171 'cast_streaming_udp_transport.idl', | 172 'cast_streaming_udp_transport.idl', |
172 'webrtc_logging_private.idl', | |
173 ], | 173 ], |
174 }], | 174 }], |
175 ], | 175 ], |
176 'cc_dir': 'chrome/common/extensions/api', | 176 'cc_dir': 'chrome/common/extensions/api', |
177 'root_namespace': 'extensions::api', | 177 'root_namespace': 'extensions::api', |
178 }, | 178 }, |
179 'dependencies': [ | 179 'dependencies': [ |
180 '<(DEPTH)/skia/skia.gyp:skia', | 180 '<(DEPTH)/skia/skia.gyp:skia', |
181 '<(DEPTH)/sync/sync.gyp:sync', | 181 '<(DEPTH)/sync/sync.gyp:sync', |
182 ], | 182 ], |
183 'conditions': [ | 183 'conditions': [ |
184 ['chromeos==1', { | 184 ['chromeos==1', { |
185 'dependencies': [ | 185 'dependencies': [ |
186 '<(DEPTH)/chrome/chrome.gyp:drive_proto', | 186 '<(DEPTH)/chrome/chrome.gyp:drive_proto', |
187 ], | 187 ], |
188 }], | 188 }], |
189 ], | 189 ], |
190 }, | 190 }, |
191 ], | 191 ], |
192 } | 192 } |
OLD | NEW |