OLD | NEW |
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 '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_proxy_private.h', | 95 'c/private/ppb_proxy_private.h', |
96 'c/private/ppp_instance_private.h', | 96 'c/private/ppp_instance_private.h', |
97 | 97 |
98 # Deprecated interfaces. | 98 # Deprecated interfaces. |
99 'c/dev/deprecated_bool.h', | 99 'c/dev/deprecated_bool.h', |
100 'c/dev/ppb_var_deprecated.h', | 100 'c/dev/ppb_var_deprecated.h', |
101 'c/dev/ppp_class_deprecated.h', | 101 'c/dev/ppp_class_deprecated.h', |
102 | 102 |
103 # Trusted interfaces. | 103 # Trusted interfaces. |
104 'c/trusted/ppb_audio_trusted.h', | 104 'c/trusted/ppb_audio_trusted.h', |
| 105 'c/trusted/ppb_broker_trusted.h', |
| 106 'c/trusted/ppb_buffer_trusted.h', |
105 'c/trusted/ppb_image_data_trusted.h', | 107 'c/trusted/ppb_image_data_trusted.h', |
106 'c/trusted/ppb_broker_trusted.h', | |
107 'c/trusted/ppb_url_loader_trusted.h', | 108 'c/trusted/ppb_url_loader_trusted.h', |
108 'c/trusted/ppp_broker.h', | 109 'c/trusted/ppp_broker.h', |
109 ], | 110 ], |
110 'conditions': [ | 111 'conditions': [ |
111 ['p2p_apis==1', { | 112 ['p2p_apis==1', { |
112 'sources': [ | 113 'sources': [ |
113 'c/dev/ppb_transport_dev.h', | 114 'c/dev/ppb_transport_dev.h', |
114 ], | 115 ], |
115 }], | 116 }], |
116 ], | 117 ], |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 }], | 268 }], |
268 ['OS=="mac"', { | 269 ['OS=="mac"', { |
269 'xcode_settings': { | 270 'xcode_settings': { |
270 'WARNING_CFLAGS': ['-Wextra', '-pedantic'], | 271 'WARNING_CFLAGS': ['-Wextra', '-pedantic'], |
271 }, | 272 }, |
272 }] | 273 }] |
273 ], | 274 ], |
274 }, | 275 }, |
275 ], | 276 ], |
276 } | 277 } |
OLD | NEW |