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

Side by Side Diff: BUILD.gn

Issue 1311453010: Fix gn_all, net_unittests build on GN ios. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fix_ios_app
Patch Set: Created 5 years, 3 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
« no previous file with comments | « no previous file | net/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 # This is the root build file for GN. GN will start processing by loading this 5 # This is the root build file for GN. GN will start processing by loading this
6 # file, and recursively load all dependencies until all dependencies are either 6 # file, and recursively load all dependencies until all dependencies are either
7 # resolved or known not to exist (which will cause the build to fail). So if 7 # resolved or known not to exist (which will cause the build to fail). So if
8 # you add a new build file, there must be some path of dependencies from this 8 # you add a new build file, there must be some path of dependencies from this
9 # file to your new one or GN won't know about it. 9 # file to your new one or GN won't know about it.
10 10
(...skipping 723 matching lines...) Expand 10 before | Expand all | Expand 10 after
734 } 734 }
735 735
736 group("gn_visibility") { 736 group("gn_visibility") {
737 deps = [ 737 deps = [
738 "//build/config/sanitizers:options_sources", 738 "//build/config/sanitizers:options_sources",
739 739
740 # "//third_party/pdfium:pdfium_embeddertests", # TODO(GYP): visibility? 740 # "//third_party/pdfium:pdfium_embeddertests", # TODO(GYP): visibility?
741 # "//third_party/pdfium:pdfium_unittests", # TODO(GYP): visibility? 741 # "//third_party/pdfium:pdfium_unittests", # TODO(GYP): visibility?
742 742
743 "//ui/resources:repack_ui_test_mac_locale_pack", 743 "//ui/resources:repack_ui_test_mac_locale_pack",
744 ]
744 745
745 "//v8:v8_snapshot", 746 if (!is_ios) {
746 "//v8:postmortem-metadata", 747 deps += [
747 ] 748 "//v8:v8_snapshot",
749 "//v8:postmortem-metadata",
750 ]
751 }
748 } 752 }
749 753
750 if (!is_ios) { 754 if (!is_ios) {
751 # This group includes all of the targets needed to build and test Blink, 755 # This group includes all of the targets needed to build and test Blink,
752 # including running the layout tests (see below). 756 # including running the layout tests (see below).
753 group("blink_tests") { 757 group("blink_tests") {
754 testonly = true 758 testonly = true
755 759
756 deps = [ 760 deps = [
757 "//third_party/WebKit/public:all_blink", 761 "//third_party/WebKit/public:all_blink",
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
936 "//ui/views:views_unittests", # TooltipControllerTest failures 940 "//ui/views:views_unittests", # TooltipControllerTest failures
937 "//ui/wm:wm_unittests", # PASSES 4/21/2015 941 "//ui/wm:wm_unittests", # PASSES 4/21/2015
938 "//url:url_unittests", # PASSES 4/17/2015 942 "//url:url_unittests", # PASSES 4/17/2015
939 943
940 # TODO(GYP) nacl_integration 944 # TODO(GYP) nacl_integration
941 # TODO(GYP) telemetry_perf_unittests 945 # TODO(GYP) telemetry_perf_unittests
942 # TODO(GYP) telemetry_unittests 946 # TODO(GYP) telemetry_unittests
943 ] 947 ]
944 } 948 }
945 } 949 }
OLDNEW
« no previous file with comments | « no previous file | net/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698