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

Side by Side Diff: base/BUILD.gn

Issue 1641413002: Makes GetBuildTime behave identically on all build types. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Hook based approach 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
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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 "files/important_file_writer.h", 327 "files/important_file_writer.h",
328 "files/memory_mapped_file.cc", 328 "files/memory_mapped_file.cc",
329 "files/memory_mapped_file.h", 329 "files/memory_mapped_file.h",
330 "files/memory_mapped_file_posix.cc", 330 "files/memory_mapped_file_posix.cc",
331 "files/memory_mapped_file_win.cc", 331 "files/memory_mapped_file_win.cc",
332 "files/scoped_file.cc", 332 "files/scoped_file.cc",
333 "files/scoped_file.h", 333 "files/scoped_file.h",
334 "files/scoped_temp_dir.cc", 334 "files/scoped_temp_dir.cc",
335 "files/scoped_temp_dir.h", 335 "files/scoped_temp_dir.h",
336 "format_macros.h", 336 "format_macros.h",
337 "generated_build_date.h",
337 "gtest_prod_util.h", 338 "gtest_prod_util.h",
338 "guid.cc", 339 "guid.cc",
339 "guid.h", 340 "guid.h",
340 "guid_posix.cc", 341 "guid_posix.cc",
341 "guid_win.cc", 342 "guid_win.cc",
342 "hash.cc", 343 "hash.cc",
343 "hash.h", 344 "hash.h",
344 "id_map.h", 345 "id_map.h",
345 "ios/crb_protocol_observers.h", 346 "ios/crb_protocol_observers.h",
346 "ios/crb_protocol_observers.mm", 347 "ios/crb_protocol_observers.mm",
(...skipping 1717 matching lines...) Expand 10 before | Expand all | Expand 10 after
2064 2065
2065 # GYP: //base.gyp:base_java_unittest_support 2066 # GYP: //base.gyp:base_java_unittest_support
2066 android_library("base_java_unittest_support") { 2067 android_library("base_java_unittest_support") {
2067 deps = [ 2068 deps = [
2068 ":base_java", 2069 ":base_java",
2069 ] 2070 ]
2070 java_files = 2071 java_files =
2071 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2072 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2072 } 2073 }
2073 } 2074 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698