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

Side by Side Diff: base/BUILD.gn

Issue 1921853002: Replacing hard-coded clang version by a common variable. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | build/config/win/BUILD.gn » ('j') | build/toolchain/toolchain.gni » ('J')
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 1226 matching lines...) Expand 10 before | Expand all | Expand 10 after
1237 "$root_out_dir/api-ms-win-crt-utility-l1-1-0.dll", 1237 "$root_out_dir/api-ms-win-crt-utility-l1-1-0.dll",
1238 "$root_out_dir/ucrtbase${vcrt_suffix}.dll", 1238 "$root_out_dir/ucrtbase${vcrt_suffix}.dll",
1239 ] 1239 ]
1240 } else { 1240 } else {
1241 data += [ 1241 data += [
1242 "$root_out_dir/msvcp120${vcrt_suffix}.dll", 1242 "$root_out_dir/msvcp120${vcrt_suffix}.dll",
1243 "$root_out_dir/msvcr120${vcrt_suffix}.dll", 1243 "$root_out_dir/msvcr120${vcrt_suffix}.dll",
1244 ] 1244 ]
1245 } 1245 }
1246 if (is_asan) { 1246 if (is_asan) {
1247 data += [ "//third_party/llvm-build/Release+Asserts/lib/clang/3.9.0/lib/ windows/clang_rt.asan_dynamic-i386.dll" ] 1247 data += [ "//third_party/llvm-build/Release+Asserts/lib/clang/$clang_ver sion/lib/windows/clang_rt.asan_dynamic-i386.dll" ]
1248 } 1248 }
1249 } 1249 }
1250 1250
1251 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1251 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1252 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 1252 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
1253 1253
1254 libs = [ 1254 libs = [
1255 "cfgmgr32.lib", 1255 "cfgmgr32.lib",
1256 "netapi32.lib", 1256 "netapi32.lib",
1257 "powrprof.lib", 1257 "powrprof.lib",
(...skipping 1108 matching lines...) Expand 10 before | Expand all | Expand 10 after
2366 2366
2367 # GYP: //base.gyp:base_java_unittest_support 2367 # GYP: //base.gyp:base_java_unittest_support
2368 android_library("base_java_unittest_support") { 2368 android_library("base_java_unittest_support") {
2369 deps = [ 2369 deps = [
2370 ":base_java", 2370 ":base_java",
2371 ] 2371 ]
2372 java_files = 2372 java_files =
2373 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2373 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2374 } 2374 }
2375 } 2375 }
OLDNEW
« no previous file with comments | « no previous file | build/config/win/BUILD.gn » ('j') | build/toolchain/toolchain.gni » ('J')

Powered by Google App Engine
This is Rietveld 408576698