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 1226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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 } |
OLD | NEW |