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

Side by Side Diff: base/BUILD.gn

Issue 1846713002: Improve the error message in BuildTime.InThePast to help figure out the problem. (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: Improved comment Created 4 years, 8 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 | base/build_time.cc » ('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 # HOW TO WRITE CONDITIONALS IN THIS FILE 5 # HOW TO WRITE CONDITIONALS IN THIS FILE
6 # ====================================== 6 # ======================================
7 # 7 #
8 # In many other places, one would write a conditional that expresses all the 8 # In many other places, one would write a conditional that expresses all the
9 # cases when a source file is used or unused, and then either add or subtract 9 # cases when a source file is used or unused, and then either add or subtract
10 # it from the sources list in that case 10 # it from the sources list in that case
(...skipping 10 matching lines...) Expand all
21 import("//build/config/allocator.gni") 21 import("//build/config/allocator.gni")
22 import("//build/config/compiler/compiler.gni") 22 import("//build/config/compiler/compiler.gni")
23 import("//build/config/nacl/config.gni") 23 import("//build/config/nacl/config.gni")
24 import("//build/config/sysroot.gni") 24 import("//build/config/sysroot.gni")
25 import("//build/config/ui.gni") 25 import("//build/config/ui.gni")
26 import("//build/nocompile.gni") 26 import("//build/nocompile.gni")
27 import("//testing/test.gni") 27 import("//testing/test.gni")
28 28
29 declare_args() { 29 declare_args() {
30 # Override this value to give a specific build date. 30 # Override this value to give a specific build date.
31 # See //base/build_time.cc for more details. 31 # See //base/build_time.cc and //build/write_build_date_header.py for more
32 # details and the expected format.
32 override_build_date = "N/A" 33 override_build_date = "N/A"
33 } 34 }
34 35
35 if (is_android) { 36 if (is_android) {
36 import("//build/config/android/rules.gni") 37 import("//build/config/android/rules.gni")
37 } 38 }
38 39
39 if (is_win) { 40 if (is_win) {
40 import("//build/config/win/visual_studio_version.gni") 41 import("//build/config/win/visual_studio_version.gni")
41 } 42 }
(...skipping 2282 matching lines...) Expand 10 before | Expand all | Expand 10 after
2324 2325
2325 # GYP: //base.gyp:base_java_unittest_support 2326 # GYP: //base.gyp:base_java_unittest_support
2326 android_library("base_java_unittest_support") { 2327 android_library("base_java_unittest_support") {
2327 deps = [ 2328 deps = [
2328 ":base_java", 2329 ":base_java",
2329 ] 2330 ]
2330 java_files = 2331 java_files =
2331 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2332 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2332 } 2333 }
2333 } 2334 }
OLDNEW
« no previous file with comments | « no previous file | base/build_time.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698