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

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: importing toolchain.gni Created 4 years, 7 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') | 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 1223 matching lines...) Expand 10 before | Expand all | Expand 10 after
1234 "$root_out_dir/api-ms-win-crt-utility-l1-1-0.dll", 1234 "$root_out_dir/api-ms-win-crt-utility-l1-1-0.dll",
1235 "$root_out_dir/ucrtbase${vcrt_suffix}.dll", 1235 "$root_out_dir/ucrtbase${vcrt_suffix}.dll",
1236 ] 1236 ]
1237 } else { 1237 } else {
1238 data += [ 1238 data += [
1239 "$root_out_dir/msvcp120${vcrt_suffix}.dll", 1239 "$root_out_dir/msvcp120${vcrt_suffix}.dll",
1240 "$root_out_dir/msvcr120${vcrt_suffix}.dll", 1240 "$root_out_dir/msvcr120${vcrt_suffix}.dll",
1241 ] 1241 ]
1242 } 1242 }
1243 if (is_asan) { 1243 if (is_asan) {
1244 data += [ "//third_party/llvm-build/Release+Asserts/lib/clang/3.9.0/lib/ windows/clang_rt.asan_dynamic-i386.dll" ] 1244 data += [ "//third_party/llvm-build/Release+Asserts/lib/clang/$clang_ver sion/lib/windows/clang_rt.asan_dynamic-i386.dll" ]
1245 } 1245 }
1246 } 1246 }
1247 1247
1248 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1248 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1249 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 1249 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
1250 1250
1251 libs = [ 1251 libs = [
1252 "cfgmgr32.lib", 1252 "cfgmgr32.lib",
1253 "netapi32.lib", 1253 "netapi32.lib",
1254 "powrprof.lib", 1254 "powrprof.lib",
(...skipping 1106 matching lines...) Expand 10 before | Expand all | Expand 10 after
2361 2361
2362 # GYP: //base.gyp:base_java_unittest_support 2362 # GYP: //base.gyp:base_java_unittest_support
2363 android_library("base_java_unittest_support") { 2363 android_library("base_java_unittest_support") {
2364 deps = [ 2364 deps = [
2365 ":base_java", 2365 ":base_java",
2366 ] 2366 ]
2367 java_files = 2367 java_files =
2368 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2368 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2369 } 2369 }
2370 } 2370 }
OLDNEW
« no previous file with comments | « no previous file | build/config/win/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698