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 'variables': { | 6 'variables': { |
7 'conditions': [ | 7 'conditions': [ |
8 ['inside_chromium_build==0', { | 8 ['inside_chromium_build==0', { |
9 'webkit_src_dir': '../../../..', | 9 'webkit_src_dir': '../../../..', |
10 },{ | 10 },{ |
(...skipping 10 matching lines...) Expand all Loading... |
21 ['ppapi_shared_target==1', { | 21 ['ppapi_shared_target==1', { |
22 'sources': [ | 22 'sources': [ |
23 'shared_impl/array_writer.cc', | 23 'shared_impl/array_writer.cc', |
24 'shared_impl/array_writer.h', | 24 'shared_impl/array_writer.h', |
25 'shared_impl/callback_tracker.cc', | 25 'shared_impl/callback_tracker.cc', |
26 'shared_impl/callback_tracker.h', | 26 'shared_impl/callback_tracker.h', |
27 'shared_impl/file_path.cc', | 27 'shared_impl/file_path.cc', |
28 'shared_impl/file_path.h', | 28 'shared_impl/file_path.h', |
29 'shared_impl/file_type_conversion.cc', | 29 'shared_impl/file_type_conversion.cc', |
30 'shared_impl/file_type_conversion.h', | 30 'shared_impl/file_type_conversion.h', |
| 31 'shared_impl/flash_clipboard_format_registry.cc', |
| 32 'shared_impl/flash_clipboard_format_registry.h', |
31 'shared_impl/host_resource.cc', | 33 'shared_impl/host_resource.cc', |
32 'shared_impl/host_resource.h', | 34 'shared_impl/host_resource.h', |
33 'shared_impl/id_assignment.cc', | 35 'shared_impl/id_assignment.cc', |
34 'shared_impl/id_assignment.h', | 36 'shared_impl/id_assignment.h', |
35 'shared_impl/platform_file.cc', | 37 'shared_impl/platform_file.cc', |
36 'shared_impl/platform_file.h', | 38 'shared_impl/platform_file.h', |
37 'shared_impl/ppapi_globals.cc', | 39 'shared_impl/ppapi_globals.cc', |
38 'shared_impl/ppapi_globals.h', | 40 'shared_impl/ppapi_globals.h', |
39 'shared_impl/ppapi_permissions.cc', | 41 'shared_impl/ppapi_permissions.cc', |
40 'shared_impl/ppapi_permissions.h', | 42 'shared_impl/ppapi_permissions.h', |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
244 'defines': [ | 246 'defines': [ |
245 'PPAPI_SHARED_IMPLEMENTATION', | 247 'PPAPI_SHARED_IMPLEMENTATION', |
246 'PPAPI_THUNK_IMPLEMENTATION', | 248 'PPAPI_THUNK_IMPLEMENTATION', |
247 ], | 249 ], |
248 'include_dirs': [ | 250 'include_dirs': [ |
249 '..', | 251 '..', |
250 ], | 252 ], |
251 'target_conditions': [ | 253 'target_conditions': [ |
252 ['>(nacl_untrusted_build)==1 or >(nacl_win64_target)==1', { | 254 ['>(nacl_untrusted_build)==1 or >(nacl_win64_target)==1', { |
253 'sources!': [ | 255 'sources!': [ |
| 256 'shared_impl/flash_clipboard_format_registry.cc', |
254 'shared_impl/ppb_audio_input_shared.cc', | 257 'shared_impl/ppb_audio_input_shared.cc', |
255 'shared_impl/ppb_url_util_shared.cc', | 258 'shared_impl/ppb_url_util_shared.cc', |
256 'shared_impl/ppb_video_decoder_shared.cc', | 259 'shared_impl/ppb_video_decoder_shared.cc', |
257 'shared_impl/ppb_video_capture_shared.cc', | 260 'shared_impl/ppb_video_capture_shared.cc', |
258 'shared_impl/private/ppb_browser_font_trusted_shared.cc', | 261 'shared_impl/private/ppb_browser_font_trusted_shared.cc', |
259 'shared_impl/private/ppb_char_set_shared.cc', | 262 'shared_impl/private/ppb_char_set_shared.cc', |
260 'thunk/ppb_audio_input_thunk.cc', | 263 'thunk/ppb_audio_input_thunk.cc', |
261 'thunk/ppb_audio_input_trusted_thunk.cc', | 264 'thunk/ppb_audio_input_trusted_thunk.cc', |
262 'thunk/ppb_audio_trusted_thunk.cc', | 265 'thunk/ppb_audio_trusted_thunk.cc', |
263 'thunk/ppb_broker_thunk.cc', | 266 'thunk/ppb_broker_thunk.cc', |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
311 'thunk/ppb_tcp_socket_private_thunk.cc', | 314 'thunk/ppb_tcp_socket_private_thunk.cc', |
312 'thunk/ppb_udp_socket_private_thunk.cc', | 315 'thunk/ppb_udp_socket_private_thunk.cc', |
313 'thunk/ppb_x509_certificate_private_thunk.cc', | 316 'thunk/ppb_x509_certificate_private_thunk.cc', |
314 ], | 317 ], |
315 }], | 318 }], |
316 ], | 319 ], |
317 }], | 320 }], |
318 ], | 321 ], |
319 }, | 322 }, |
320 } | 323 } |
OLD | NEW |