Chromium Code Reviews| 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("//build/gypi_to_gn.py", | 5 gypi_values = exec_script("//build/gypi_to_gn.py", |
| 6 [ rebase_path("ppapi_sources.gypi") ], | 6 [ rebase_path("ppapi_sources.gypi") ], |
| 7 "scope", | 7 "scope", |
| 8 [ "ppapi_sources.gypi" ]) | 8 [ "ppapi_sources.gypi" ]) |
| 9 | 9 |
| 10 # TODO(GYP) support chrome_multiple_dll | 10 # TODO(GYP) support chrome_multiple_dll |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 382 "thunk/ppb_platform_verification_private_thunk.cc", | 382 "thunk/ppb_platform_verification_private_thunk.cc", |
| 383 "thunk/ppb_scrollbar_thunk.cc", | 383 "thunk/ppb_scrollbar_thunk.cc", |
| 384 "thunk/ppb_talk_private_thunk.cc", | 384 "thunk/ppb_talk_private_thunk.cc", |
| 385 "thunk/ppb_url_util_thunk.cc", | 385 "thunk/ppb_url_util_thunk.cc", |
| 386 "thunk/ppb_video_decoder_dev_thunk.cc", | 386 "thunk/ppb_video_decoder_dev_thunk.cc", |
| 387 ] | 387 ] |
| 388 } | 388 } |
| 389 | 389 |
| 390 # We exclude a few more things for nacl_win64, to avoid pulling in more | 390 # We exclude a few more things for nacl_win64, to avoid pulling in more |
| 391 # dependencies. | 391 # dependencies. |
| 392 if (is_win && cpu_arch == "x64" && current_toolchain != default_toolchain) { | 392 if (is_win && current_cpu == "x64" && current_toolchain != default_toolchain) { |
|
brettw
2015/02/12 18:04:31
Seems like you need to run "gn format" on this cha
| |
| 393 sources -= [ | 393 sources -= [ |
| 394 "shared_impl/ppb_audio_shared.cc", | 394 "shared_impl/ppb_audio_shared.cc", |
| 395 "shared_impl/ppb_graphics_3d_shared.cc", | 395 "shared_impl/ppb_graphics_3d_shared.cc", |
| 396 "shared_impl/ppb_opengles2_shared.cc", | 396 "shared_impl/ppb_opengles2_shared.cc", |
| 397 "shared_impl/private/ppb_host_resolver_shared.cc", | 397 "shared_impl/private/ppb_host_resolver_shared.cc", |
| 398 "shared_impl/private/net_address_private_impl.cc", | 398 "shared_impl/private/net_address_private_impl.cc", |
| 399 "thunk/ppb_graphics_3d_thunk.cc", | 399 "thunk/ppb_graphics_3d_thunk.cc", |
| 400 "thunk/ppb_host_resolver_private_thunk.cc", | 400 "thunk/ppb_host_resolver_private_thunk.cc", |
| 401 "thunk/ppb_tcp_server_socket_private_thunk.cc", | 401 "thunk/ppb_tcp_server_socket_private_thunk.cc", |
| 402 "thunk/ppb_tcp_socket_private_thunk.cc", | 402 "thunk/ppb_tcp_socket_private_thunk.cc", |
| (...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 812 ":ppapi_proxy", | 812 ":ppapi_proxy", |
| 813 ":ppapi_shared", | 813 ":ppapi_shared", |
| 814 "//base/test:test_support", | 814 "//base/test:test_support", |
| 815 "//ipc", | 815 "//ipc", |
| 816 "//ipc:test_support", | 816 "//ipc:test_support", |
| 817 "//testing/gmock", | 817 "//testing/gmock", |
| 818 "//testing/gtest", | 818 "//testing/gtest", |
| 819 ] | 819 ] |
| 820 } | 820 } |
| 821 # TODO(GYP) other targets from ppapi_tests.gyp | 821 # TODO(GYP) other targets from ppapi_tests.gyp |
| OLD | NEW |