| 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 2006 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2017 } | 2017 } |
| 2018 | 2018 |
| 2019 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 2019 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 2020 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 2020 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 2021 | 2021 |
| 2022 # Symbols for crashes when running tests on swarming. | 2022 # Symbols for crashes when running tests on swarming. |
| 2023 if (symbol_level > 0) { | 2023 if (symbol_level > 0) { |
| 2024 if (is_win) { | 2024 if (is_win) { |
| 2025 data += [ "$root_out_dir/base_unittests.exe.pdb" ] | 2025 data += [ "$root_out_dir/base_unittests.exe.pdb" ] |
| 2026 } else if (is_mac) { | 2026 } else if (is_mac) { |
| 2027 data += [ "$root_out_dir/base_unittests.dSYM/" ] | 2027 # TODO(crbug.com/330301): make this conditional on mac_strip_release. |
| 2028 # data += [ "$root_out_dir/base_unittests.dSYM/" ] |
| 2028 } | 2029 } |
| 2029 } | 2030 } |
| 2030 } | 2031 } |
| 2031 | 2032 |
| 2032 action("build_date") { | 2033 action("build_date") { |
| 2033 script = "//build/write_build_date_header.py" | 2034 script = "//build/write_build_date_header.py" |
| 2034 | 2035 |
| 2035 # Force recalculation if there's been a change. | 2036 # Force recalculation if there's been a change. |
| 2036 inputs = [ | 2037 inputs = [ |
| 2037 "//build/util/LASTCHANGE", | 2038 "//build/util/LASTCHANGE", |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2319 | 2320 |
| 2320 # GYP: //base.gyp:base_java_unittest_support | 2321 # GYP: //base.gyp:base_java_unittest_support |
| 2321 android_library("base_java_unittest_support") { | 2322 android_library("base_java_unittest_support") { |
| 2322 deps = [ | 2323 deps = [ |
| 2323 ":base_java", | 2324 ":base_java", |
| 2324 ] | 2325 ] |
| 2325 java_files = | 2326 java_files = |
| 2326 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2327 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2327 } | 2328 } |
| 2328 } | 2329 } |
| OLD | NEW |