| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |