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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
303 'cflags': ['-Wextra', '-pedantic'], | 303 'cflags': ['-Wextra', '-pedantic'], |
304 }], | 304 }], |
305 ['OS=="mac"', { | 305 ['OS=="mac"', { |
306 'xcode_settings': { | 306 'xcode_settings': { |
307 'WARNING_CFLAGS': ['-Wextra', '-pedantic'], | 307 'WARNING_CFLAGS': ['-Wextra', '-pedantic'], |
308 }, | 308 }, |
309 }] | 309 }] |
310 ], | 310 ], |
311 }, | 311 }, |
312 ], | 312 ], |
| 313 'conditions': [ |
| 314 ['disable_nacl!=1', { |
| 315 'targets' : [ |
| 316 { |
| 317 'target_name': 'ppapi_cpp_lib', |
| 318 'type': 'none', |
| 319 'variables': { |
| 320 'nlib_target': 'libppapi_cpp.a', |
| 321 'build_glibc': 0, |
| 322 'build_newlib': 1, |
| 323 'sources': [ |
| 324 'cpp/audio.cc', |
| 325 'cpp/audio.h', |
| 326 'cpp/audio_config.cc', |
| 327 'cpp/audio_config.h', |
| 328 'cpp/completion_callback.cc', |
| 329 'cpp/completion_callback.h', |
| 330 'cpp/core.cc', |
| 331 'cpp/core.h', |
| 332 'cpp/file_io.cc', |
| 333 'cpp/file_io.h', |
| 334 'cpp/file_ref.cc', |
| 335 'cpp/file_ref.h', |
| 336 'cpp/file_system.cc', |
| 337 'cpp/file_system.h', |
| 338 'cpp/fullscreen.cc', |
| 339 'cpp/fullscreen.h', |
| 340 'cpp/graphics_2d.cc', |
| 341 'cpp/graphics_2d.h', |
| 342 'cpp/graphics_3d.cc', |
| 343 'cpp/graphics_3d.h', |
| 344 'cpp/graphics_3d_client.cc', |
| 345 'cpp/graphics_3d_client.h', |
| 346 'cpp/image_data.cc', |
| 347 'cpp/image_data.h', |
| 348 'cpp/input_event.cc', |
| 349 'cpp/input_event.h', |
| 350 'cpp/instance.cc', |
| 351 'cpp/instance.h', |
| 352 'cpp/logging.h', |
| 353 'cpp/module.cc', |
| 354 'cpp/module.h', |
| 355 'cpp/module_impl.h', |
| 356 'cpp/mouse_lock.cc', |
| 357 'cpp/mouse_lock.h', |
| 358 'cpp/non_thread_safe_ref_count.h', |
| 359 'cpp/paint_aggregator.cc', |
| 360 'cpp/paint_aggregator.h', |
| 361 'cpp/paint_manager.cc', |
| 362 'cpp/paint_manager.h', |
| 363 'cpp/point.h', |
| 364 'cpp/rect.cc', |
| 365 'cpp/rect.h', |
| 366 'cpp/resource.cc', |
| 367 'cpp/resource.h', |
| 368 'cpp/size.h', |
| 369 'cpp/url_loader.cc', |
| 370 'cpp/url_loader.h', |
| 371 'cpp/url_request_info.cc', |
| 372 'cpp/url_request_info.h', |
| 373 'cpp/url_response_info.cc', |
| 374 'cpp/url_response_info.h', |
| 375 'cpp/var.cc', |
| 376 'cpp/var.h', |
| 377 |
| 378 # Dev interfaces. |
| 379 'cpp/dev/buffer_dev.cc', |
| 380 'cpp/dev/buffer_dev.h', |
| 381 'cpp/dev/context_3d_dev.cc', |
| 382 'cpp/dev/context_3d_dev.h', |
| 383 'cpp/dev/directory_entry_dev.cc', |
| 384 'cpp/dev/directory_entry_dev.h', |
| 385 'cpp/dev/directory_reader_dev.cc', |
| 386 'cpp/dev/directory_reader_dev.h', |
| 387 'cpp/dev/file_chooser_dev.cc', |
| 388 'cpp/dev/file_chooser_dev.h', |
| 389 'cpp/dev/find_dev.cc', |
| 390 'cpp/dev/find_dev.h', |
| 391 'cpp/dev/font_dev.cc', |
| 392 'cpp/dev/font_dev.h', |
| 393 'cpp/dev/fullscreen_dev.cc', |
| 394 'cpp/dev/fullscreen_dev.h', |
| 395 'cpp/dev/ime_input_event_dev.cc', |
| 396 'cpp/dev/ime_input_event_dev.h', |
| 397 'cpp/dev/memory_dev.cc', |
| 398 'cpp/dev/memory_dev.h', |
| 399 'cpp/dev/printing_dev.cc', |
| 400 'cpp/dev/printing_dev.h', |
| 401 'cpp/dev/scrollbar_dev.cc', |
| 402 'cpp/dev/scrollbar_dev.h', |
| 403 'cpp/dev/selection_dev.cc', |
| 404 'cpp/dev/selection_dev.h', |
| 405 'cpp/dev/surface_3d_dev.cc', |
| 406 'cpp/dev/surface_3d_dev.h', |
| 407 'cpp/dev/text_input_dev.cc', |
| 408 'cpp/dev/text_input_dev.h', |
| 409 'cpp/dev/url_util_dev.cc', |
| 410 'cpp/dev/url_util_dev.h', |
| 411 'cpp/dev/video_capture_client_dev.cc', |
| 412 'cpp/dev/video_capture_client_dev.h', |
| 413 'cpp/dev/video_capture_dev.cc', |
| 414 'cpp/dev/video_capture_dev.h', |
| 415 'cpp/dev/video_decoder_client_dev.cc', |
| 416 'cpp/dev/video_decoder_client_dev.h', |
| 417 'cpp/dev/video_decoder_dev.cc', |
| 418 'cpp/dev/video_decoder_dev.h', |
| 419 'cpp/dev/widget_client_dev.cc', |
| 420 'cpp/dev/widget_client_dev.h', |
| 421 'cpp/dev/widget_dev.cc', |
| 422 'cpp/dev/widget_dev.h', |
| 423 'cpp/dev/zoom_dev.cc', |
| 424 'cpp/dev/zoom_dev.h', |
| 425 |
| 426 # Deprecated interfaces. |
| 427 'cpp/dev/scriptable_object_deprecated.h', |
| 428 'cpp/dev/scriptable_object_deprecated.cc', |
| 429 |
| 430 # Private interfaces. |
| 431 'cpp/private/flash_fullscreen.cc', |
| 432 'cpp/private/flash_fullscreen.h', |
| 433 'cpp/private/instance_private.cc', |
| 434 'cpp/private/instance_private.h', |
| 435 'cpp/private/var_private.cc', |
| 436 'cpp/private/var_private.h', |
| 437 |
| 438 # Trusted interfaces. |
| 439 'cpp/trusted/file_chooser_trusted.cc', |
| 440 'cpp/trusted/file_chooser_trusted.h', |
| 441 |
| 442 # Entrypoints |
| 443 'cpp/module_embedder.h', |
| 444 'cpp/ppp_entrypoints.cc', |
| 445 ], |
| 446 }, |
| 447 'dependencies': [ |
| 448 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
| 449 ], |
| 450 }, |
| 451 ], |
| 452 }], |
| 453 ], |
313 } | 454 } |
OLD | NEW |