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

Side by Side Diff: base/BUILD.gn

Issue 1842143002: Remove "#pragma comment(lib" in base (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 | base/base.gyp » ('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 1234 matching lines...) Expand 10 before | Expand all | Expand 10 after
1245 } 1245 }
1246 1246
1247 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1247 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1248 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 1248 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
1249 1249
1250 libs = [ 1250 libs = [
1251 "cfgmgr32.lib", 1251 "cfgmgr32.lib",
1252 "netapi32.lib", 1252 "netapi32.lib",
1253 "powrprof.lib", 1253 "powrprof.lib",
1254 "setupapi.lib", 1254 "setupapi.lib",
1255 "userenv.lib",
1256 "winmm.lib",
1255 ] 1257 ]
1256 all_dependent_configs = [ ":base_win_linker_flags" ] 1258 all_dependent_configs = [ ":base_win_linker_flags" ]
1257 } else if (!is_nacl || is_nacl_nonsfi) { 1259 } else if (!is_nacl || is_nacl_nonsfi) {
1258 # Non-Windows. 1260 # Non-Windows.
1259 deps += [ "//base/third_party/libevent" ] 1261 deps += [ "//base/third_party/libevent" ]
1260 } 1262 }
1261 1263
1262 # Desktop Mac. 1264 # Desktop Mac.
1263 if (is_mac) { 1265 if (is_mac) {
1264 sources += [ 1266 sources += [
(...skipping 1056 matching lines...) Expand 10 before | Expand all | Expand 10 after
2321 2323
2322 # GYP: //base.gyp:base_java_unittest_support 2324 # GYP: //base.gyp:base_java_unittest_support
2323 android_library("base_java_unittest_support") { 2325 android_library("base_java_unittest_support") {
2324 deps = [ 2326 deps = [
2325 ":base_java", 2327 ":base_java",
2326 ] 2328 ]
2327 java_files = 2329 java_files =
2328 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2330 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2329 } 2331 }
2330 } 2332 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698