OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 gypi_values = exec_script( | 5 gypi_values = exec_script( |
6 "//build/gypi_to_gn.py", | 6 "//build/gypi_to_gn.py", |
7 [ rebase_path("ppapi_sources.gypi") ], | 7 [ rebase_path("ppapi_sources.gypi") ], |
8 "scope", | 8 "scope", |
9 [ "ppapi_sources.gypi" ]) | 9 [ "ppapi_sources.gypi" ]) |
10 | 10 |
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 "thunk/ppb_url_request_info_thunk.cc", | 301 "thunk/ppb_url_request_info_thunk.cc", |
302 "thunk/ppb_url_response_info_api.h", | 302 "thunk/ppb_url_response_info_api.h", |
303 "thunk/ppb_url_response_info_thunk.cc", | 303 "thunk/ppb_url_response_info_thunk.cc", |
304 "thunk/ppb_var_array_thunk.cc", | 304 "thunk/ppb_var_array_thunk.cc", |
305 "thunk/ppb_var_dictionary_thunk.cc", | 305 "thunk/ppb_var_dictionary_thunk.cc", |
306 "thunk/ppb_video_capture_api.h", | 306 "thunk/ppb_video_capture_api.h", |
307 "thunk/ppb_video_decoder_api.h", | 307 "thunk/ppb_video_decoder_api.h", |
308 "thunk/ppb_video_decoder_dev_api.h", | 308 "thunk/ppb_video_decoder_dev_api.h", |
309 "thunk/ppb_video_destination_private_api.h", | 309 "thunk/ppb_video_destination_private_api.h", |
310 "thunk/ppb_video_destination_private_thunk.cc", | 310 "thunk/ppb_video_destination_private_thunk.cc", |
| 311 "thunk/ppb_video_encoder_api.h", |
| 312 "thunk/ppb_video_encoder_thunk.cc", |
311 "thunk/ppb_video_frame_api.h", | 313 "thunk/ppb_video_frame_api.h", |
312 "thunk/ppb_video_frame_thunk.cc", | 314 "thunk/ppb_video_frame_thunk.cc", |
313 "thunk/ppb_video_source_private_api.h", | 315 "thunk/ppb_video_source_private_api.h", |
314 "thunk/ppb_video_source_private_thunk.cc", | 316 "thunk/ppb_video_source_private_thunk.cc", |
315 "thunk/ppb_view_api.h", | 317 "thunk/ppb_view_api.h", |
316 "thunk/ppb_view_dev_thunk.cc", | 318 "thunk/ppb_view_dev_thunk.cc", |
317 "thunk/ppb_view_thunk.cc", | 319 "thunk/ppb_view_thunk.cc", |
318 "thunk/ppb_websocket_api.h", | 320 "thunk/ppb_websocket_api.h", |
319 "thunk/ppb_websocket_thunk.cc", | 321 "thunk/ppb_websocket_thunk.cc", |
320 "thunk/ppb_widget_api.h", | 322 "thunk/ppb_widget_api.h", |
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
710 "//ui/surface", | 712 "//ui/surface", |
711 #blink_target, TODO(GYP) | 713 #blink_target, TODO(GYP) |
712 ] | 714 ] |
713 | 715 |
714 if (is_win) { | 716 if (is_win) { |
715 cflags = [ "/wd4267" ] # size_t to int truncation. | 717 cflags = [ "/wd4267" ] # size_t to int truncation. |
716 } | 718 } |
717 } | 719 } |
718 | 720 |
719 # TODO(GYP) other targets from ppapi_tests.gyp | 721 # TODO(GYP) other targets from ppapi_tests.gyp |
OLD | NEW |