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

Side by Side Diff: BUILD.gn

Issue 1131773004: content: Port layout_test_helper target to GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 | content/content_shell.gypi » ('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 734 matching lines...) Expand 10 before | Expand all | Expand 10 after
745 "//breakpad:dump_syms($host_toolchain)", 745 "//breakpad:dump_syms($host_toolchain)",
746 "//breakpad:minidump_stackwalk($host_toolchain)", 746 "//breakpad:minidump_stackwalk($host_toolchain)",
747 "//content/shell/android:content_shell_apk", 747 "//content/shell/android:content_shell_apk",
748 ] 748 ]
749 } else { 749 } else {
750 deps += [ "//content/shell:content_shell" ] 750 deps += [ "//content/shell:content_shell" ]
751 } 751 }
752 752
753 if (is_win) { 753 if (is_win) {
754 deps += [ 754 deps += [
755 "//content/shell:layout_test_helper",
755 #'../content/content_shell_and_tests.gyp:content_shell_crash_service', T ODO(GYP) 756 #'../content/content_shell_and_tests.gyp:content_shell_crash_service', T ODO(GYP)
756 #'../content/content_shell_and_tests.gyp:layout_test_helper', TODO(GYP)
757 ] 757 ]
758 } 758 }
759 759
760 if (!is_win && !is_android) { 760 if (!is_win && !is_android) {
761 deps += [ "//breakpad:minidump_stackwalk" ] 761 deps += [ "//breakpad:minidump_stackwalk" ]
762 } 762 }
763 763
764 if (is_mac) { 764 if (is_mac) {
765 deps += [ 765 deps += [
766 "//breakpad:dump_syms($host_toolchain)", 766 "//breakpad:dump_syms($host_toolchain)",
767 #'../content/content_shell_and_tests.gyp:layout_test_helper', TODO(GYP) 767 "//content/shell:layout_test_helper",
768 ] 768 ]
769 } 769 }
770 770
771 if (is_linux) { 771 if (is_linux) {
772 deps += [ "//breakpad:dump_syms($host_toolchain)" ] 772 deps += [ "//breakpad:dump_syms($host_toolchain)" ]
773 } 773 }
774 } 774 }
775 } 775 }
776 776
777 if (is_linux) { 777 if (is_linux) {
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
908 "//ui/views:views_unittests", # TooltipControllerTest failures 908 "//ui/views:views_unittests", # TooltipControllerTest failures
909 "//ui/wm:wm_unittests", # PASSES 4/21/2015 909 "//ui/wm:wm_unittests", # PASSES 4/21/2015
910 "//url:url_unittests", # PASSES 4/17/2015 910 "//url:url_unittests", # PASSES 4/17/2015
911 911
912 # TODO(GYP) nacl_integration 912 # TODO(GYP) nacl_integration
913 # TODO(GYP) telemetry_perf_unittests 913 # TODO(GYP) telemetry_perf_unittests
914 # TODO(GYP) telemetry_unittests 914 # TODO(GYP) telemetry_unittests
915 ] 915 ]
916 } 916 }
917 } 917 }
OLDNEW
« no previous file with comments | « no previous file | content/content_shell.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698