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

Side by Side Diff: BUILD.gn

Issue 1739603002: Move GN directory name assert into //BUILD.gn (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 | build/config/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
11 import("//build/config/features.gni") 11 import("//build/config/features.gni")
12 import("//build/config/sanitizers/sanitizers.gni") 12 import("//build/config/sanitizers/sanitizers.gni")
13 import("//build/config/ui.gni") 13 import("//build/config/ui.gni")
14 import("//build_overrides/v8.gni") 14 import("//build_overrides/v8.gni")
15 import("//media/media_options.gni") 15 import("//media/media_options.gni")
16 import("//third_party/openh264/openh264_args.gni") 16 import("//third_party/openh264/openh264_args.gni")
17 17
18 if (is_android) { 18 if (is_android) {
19 import("//build/config/android/config.gni") 19 import("//build/config/android/config.gni")
20 } 20 }
21 21
22 declare_args() { 22 declare_args() {
23 # A list of extra dependencies to add to the root target. This allows a 23 # A list of extra dependencies to add to the root target. This allows a
24 # checkout to add additional targets without explicitly changing any checked- 24 # checkout to add additional targets without explicitly changing any checked-
25 # in files. 25 # in files.
26 root_extra_deps = [] 26 root_extra_deps = []
27 } 27 }
28 28
29 # Because of the source assignment filter, many targets end up over-filtering
brettw 2016/02/25 22:30:13 Can you put this at the bottom so the file is more
agrieve 2016/02/26 21:14:41 Moved to the bottom, but found out that setting an
30 # their sources if the output directory contains a platform name. Assert that
31 # this doesn't happen. http://crbug.com/548283
32 template("assert_valid_out_dir") {
33 assert(target_name != "") # Mark as used.
34 assert(
35 invoker.sources == invoker.actual_sources,
36 "Do not use a platform name in your output directory (found \"$root_build_ dir\"). http://crbug.com/548283")
37 }
38
39 assert_valid_out_dir("_check_output_dir_has_no_platform_name") {
40 actual_sources = [ "$root_build_dir/foo" ]
41 sources = actual_sources
42 }
43
29 # This file defines the following five main targets: 44 # This file defines the following five main targets:
30 # 45 #
31 # "both_gn_and_gyp" should list every root target (target that nothing else 46 # "both_gn_and_gyp" should list every root target (target that nothing else
32 # depends on) built by GN that is also built in the GYP build. 47 # depends on) built by GN that is also built in the GYP build.
33 # 48 #
34 # "gn_all" should (transitively) cause everything to be built; if you run 49 # "gn_all" should (transitively) cause everything to be built; if you run
35 # 'ninja gn_all' and then 'ninja all', the second build should do no work. 50 # 'ninja gn_all' and then 'ninja all', the second build should do no work.
36 # 51 #
37 # "gn_only" should list every root target that is *not* intended to be built in 52 # "gn_only" should list every root target that is *not* intended to be built in
38 # a GYP build. Because GN has different rules for deciding what an 'all' build 53 # a GYP build. Because GN has different rules for deciding what an 'all' build
(...skipping 826 matching lines...) Expand 10 before | Expand all | Expand 10 after
865 ] 880 ]
866 881
867 if (target_cpu == "x86") { 882 if (target_cpu == "x86") {
868 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] 883 deps += [ "//chrome/tools/crash_service:crash_service_win64" ]
869 } 884 }
870 } else { 885 } else {
871 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] 886 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
872 } 887 }
873 } 888 }
874 } 889 }
OLDNEW
« no previous file with comments | « no previous file | build/config/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698