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

Side by Side Diff: BUILD.gn

Issue 1410573004: headless: Add a headless shell (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move to a top level directory. Created 5 years, 1 month 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 | headless/BUILD.gn » ('j') | headless/README.md » ('J')
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 628 matching lines...) Expand 10 before | Expand all | Expand 10 after
639 } 639 }
640 640
641 if (is_android) { 641 if (is_android) {
642 deps += [ "//blimp" ] 642 deps += [ "//blimp" ]
643 } 643 }
644 644
645 if (is_mac) { 645 if (is_mac) {
646 deps -= [ "//mandoline:all" ] # TODO(GYP) 646 deps -= [ "//mandoline:all" ] # TODO(GYP)
647 } 647 }
648 648
649 if (is_headless) {
Peter Beverloo 2015/10/27 14:35:51 Does this need to be defined somewhere? Documenti
650 deps += [ "//headless" ]
651 }
652
649 if (use_libfuzzer) { 653 if (use_libfuzzer) {
650 deps += [ "//testing/libfuzzer:libfuzzer_main" ] 654 deps += [ "//testing/libfuzzer:libfuzzer_main" ]
651 } 655 }
652 } 656 }
653 657
654 group("gn_mojo_targets") { 658 group("gn_mojo_targets") {
655 testonly = true 659 testonly = true
656 if (is_linux && !is_chromeos) { 660 if (is_linux && !is_chromeos) {
657 # TODO(GYP): Figure out if any of these should be in gn_all 661 # TODO(GYP): Figure out if any of these should be in gn_all
658 # and figure out how cross-platform they are 662 # and figure out how cross-platform they are
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
779 if (target_cpu == "x86") { 783 if (target_cpu == "x86") {
780 deps += [ 784 deps += [
781 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 785 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009
782 ] 786 ]
783 } 787 }
784 } else { 788 } else {
785 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] 789 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
786 } 790 }
787 } 791 }
788 } 792 }
OLDNEW
« no previous file with comments | « no previous file | headless/BUILD.gn » ('j') | headless/README.md » ('J')

Powered by Google App Engine
This is Rietveld 408576698