Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(148)

Side by Side Diff: ppapi/BUILD.gn

Issue 666813002: GN: Fix Android component build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-clank
Patch Set: Actually undo gyp change Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 410
411 public_deps = [ 411 public_deps = [
412 blink_target, 412 blink_target,
413 ] 413 ]
414 deps = [ 414 deps = [
415 ":ppapi_c", 415 ":ppapi_c",
416 "//base", 416 "//base",
417 "//base:i18n", 417 "//base:i18n",
418 "//base/third_party/dynamic_annotations", 418 "//base/third_party/dynamic_annotations",
419 "//gpu/command_buffer/client", 419 "//gpu/command_buffer/client",
420 "//gpu/command_buffer/client:gles2_cmd_helper",
420 "//gpu/command_buffer/client:gles2_implementation", 421 "//gpu/command_buffer/client:gles2_implementation",
421 "//gpu/command_buffer/common", 422 "//gpu/command_buffer/common",
422 "//ipc", 423 "//ipc",
423 "//media:shared_memory_support", 424 "//media:shared_memory_support",
424 "//skia", 425 "//skia",
425 "//third_party/icu:icuuc", 426 "//third_party/icu:icuuc",
427 "//ui/events:events_base",
426 "//ui/surface", 428 "//ui/surface",
427 "//url", 429 "//url",
428 ] 430 ]
429 431
430 if (is_mac) { 432 if (is_mac) {
431 libs = [ "QuartzCore.framework" ] 433 libs = [ "QuartzCore.framework" ]
432 } else if (is_win) { 434 } else if (is_win) {
433 cflags = [ "/wd4267" ] # size_t to int truncation. 435 cflags = [ "/wd4267" ] # size_t to int truncation.
434 } 436 }
435 } 437 }
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
733 ":ppapi_shared", 735 ":ppapi_shared",
734 ":ppapi_ipc", 736 ":ppapi_ipc",
735 "//base", 737 "//base",
736 "//base/third_party/dynamic_annotations", 738 "//base/third_party/dynamic_annotations",
737 "//gpu/command_buffer/client:gles2_implementation", 739 "//gpu/command_buffer/client:gles2_implementation",
738 "//gpu/ipc", 740 "//gpu/ipc",
739 "//media:shared_memory_support", 741 "//media:shared_memory_support",
740 "//ipc", 742 "//ipc",
741 "//skia", 743 "//skia",
742 "//third_party/icu", 744 "//third_party/icu",
745 "//ui/events:events_base",
743 "//ui/surface", 746 "//ui/surface",
744 blink_target, 747 blink_target,
745 ] 748 ]
746 749
747 if (is_win) { 750 if (is_win) {
748 cflags = [ "/wd4267" ] # size_t to int truncation. 751 cflags = [ "/wd4267" ] # size_t to int truncation.
749 } 752 }
750 } 753 }
751 754
752 component("ppapi_host") { 755 component("ppapi_host") {
(...skipping 22 matching lines...) Expand all
775 defines = [ "PPAPI_HOST_IMPLEMENTATION" ] 778 defines = [ "PPAPI_HOST_IMPLEMENTATION" ]
776 779
777 deps = [ 780 deps = [
778 ":ppapi_c", 781 ":ppapi_c",
779 ":ppapi_ipc", 782 ":ppapi_ipc",
780 ":ppapi_proxy", 783 ":ppapi_proxy",
781 ":ppapi_shared", 784 ":ppapi_shared",
782 "//base", 785 "//base",
783 "//ipc", 786 "//ipc",
784 "//media:shared_memory_support", 787 "//media:shared_memory_support",
788 "//ui/events:events_base",
785 "//ui/surface", 789 "//ui/surface",
786 "//url", 790 "//url",
787 ] 791 ]
788 } 792 }
789 793
790 static_library("ppapi_unittest_shared") { 794 static_library("ppapi_unittest_shared") {
791 testonly = true 795 testonly = true
792 sources = [ 796 sources = [
793 "proxy/ppapi_proxy_test.cc", 797 "proxy/ppapi_proxy_test.cc",
794 "proxy/ppapi_proxy_test.h", 798 "proxy/ppapi_proxy_test.h",
(...skipping 10 matching lines...) Expand all
805 ":ppapi_shared", 809 ":ppapi_shared",
806 "//base/test:test_support", 810 "//base/test:test_support",
807 "//ipc", 811 "//ipc",
808 "//ipc:test_support", 812 "//ipc:test_support",
809 "//testing/gmock", 813 "//testing/gmock",
810 "//testing/gtest", 814 "//testing/gtest",
811 ] 815 ]
812 } 816 }
813 817
814 # TODO(GYP) other targets from ppapi_tests.gyp 818 # TODO(GYP) other targets from ppapi_tests.gyp
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698