| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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': 'ppapi_c', | 8 'target_name': 'ppapi_c', |
| 9 'type': 'none', | 9 'type': 'none', |
| 10 'all_dependent_settings': { | 10 'all_dependent_settings': { |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 'c/private/ppb_flash_clipboard.h', | 95 'c/private/ppb_flash_clipboard.h', |
| 96 'c/private/ppb_flash_file.h', | 96 'c/private/ppb_flash_file.h', |
| 97 'c/private/ppb_flash_fullscreen.h', | 97 'c/private/ppb_flash_fullscreen.h', |
| 98 'c/private/ppb_flash_menu.h', | 98 'c/private/ppb_flash_menu.h', |
| 99 'c/private/ppb_flash_net_connector.h', | 99 'c/private/ppb_flash_net_connector.h', |
| 100 'c/private/ppb_flash_tcp_socket.h', | 100 'c/private/ppb_flash_tcp_socket.h', |
| 101 'c/private/ppb_flash_udp_socket.h', | 101 'c/private/ppb_flash_udp_socket.h', |
| 102 'c/private/ppb_gpu_blacklist_private.h', | 102 'c/private/ppb_gpu_blacklist_private.h', |
| 103 'c/private/ppb_instance_private.h', | 103 'c/private/ppb_instance_private.h', |
| 104 'c/private/ppb_nacl_private.h', | 104 'c/private/ppb_nacl_private.h', |
| 105 'c/private/ppb_net_address_private.h', |
| 105 'c/private/ppb_pdf.h', | 106 'c/private/ppb_pdf.h', |
| 106 'c/private/ppb_proxy_private.h', | 107 'c/private/ppb_proxy_private.h', |
| 107 'c/private/ppp_instance_private.h', | 108 'c/private/ppp_instance_private.h', |
| 109 'c/private/ppb_tcp_socket_private.h', |
| 110 'c/private/ppb_udp_socket_private.h', |
| 108 | 111 |
| 109 # Deprecated interfaces. | 112 # Deprecated interfaces. |
| 110 'c/dev/deprecated_bool.h', | 113 'c/dev/deprecated_bool.h', |
| 111 'c/dev/ppb_var_deprecated.h', | 114 'c/dev/ppb_var_deprecated.h', |
| 112 'c/dev/ppp_class_deprecated.h', | 115 'c/dev/ppp_class_deprecated.h', |
| 113 | 116 |
| 114 # Trusted interfaces. | 117 # Trusted interfaces. |
| 115 'c/trusted/ppb_audio_trusted.h', | 118 'c/trusted/ppb_audio_trusted.h', |
| 116 'c/trusted/ppb_broker_trusted.h', | 119 'c/trusted/ppb_broker_trusted.h', |
| 117 'c/trusted/ppb_buffer_trusted.h', | 120 'c/trusted/ppb_buffer_trusted.h', |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 | 251 |
| 249 # Private interfaces. | 252 # Private interfaces. |
| 250 'cpp/private/flash_fullscreen.cc', | 253 'cpp/private/flash_fullscreen.cc', |
| 251 'cpp/private/flash_fullscreen.h', | 254 'cpp/private/flash_fullscreen.h', |
| 252 'cpp/private/flash_tcp_socket.cc', | 255 'cpp/private/flash_tcp_socket.cc', |
| 253 'cpp/private/flash_tcp_socket.h', | 256 'cpp/private/flash_tcp_socket.h', |
| 254 'cpp/private/instance_private.cc', | 257 'cpp/private/instance_private.cc', |
| 255 'cpp/private/instance_private.h', | 258 'cpp/private/instance_private.h', |
| 256 'cpp/private/net_address_private.cc', | 259 'cpp/private/net_address_private.cc', |
| 257 'cpp/private/net_address_private.h', | 260 'cpp/private/net_address_private.h', |
| 261 'cpp/private/tcp_socket_private.cc', |
| 262 'cpp/private/tcp_socket_private.h', |
| 263 'cpp/private/udp_socket_private.cc', |
| 264 'cpp/private/udp_socket_private.h', |
| 258 'cpp/private/var_private.cc', | 265 'cpp/private/var_private.cc', |
| 259 'cpp/private/var_private.h', | 266 'cpp/private/var_private.h', |
| 260 | 267 |
| 261 # Trusted interfaces. | 268 # Trusted interfaces. |
| 262 'cpp/trusted/file_chooser_trusted.cc', | 269 'cpp/trusted/file_chooser_trusted.cc', |
| 263 'cpp/trusted/file_chooser_trusted.h', | 270 'cpp/trusted/file_chooser_trusted.h', |
| 264 ], | 271 ], |
| 265 'conditions': [ | 272 'conditions': [ |
| 266 ['OS=="win"', { | 273 ['OS=="win"', { |
| 267 'msvs_settings': { | 274 'msvs_settings': { |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 447 ], | 454 ], |
| 448 }, | 455 }, |
| 449 'dependencies': [ | 456 'dependencies': [ |
| 450 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', | 457 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
| 451 ], | 458 ], |
| 452 }, | 459 }, |
| 453 ], | 460 ], |
| 454 }], | 461 }], |
| 455 ], | 462 ], |
| 456 } | 463 } |
| OLD | NEW |