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 1248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1259 # Non-Windows. | 1259 # Non-Windows. |
1260 deps += [ "//base/third_party/libevent" ] | 1260 deps += [ "//base/third_party/libevent" ] |
1261 } | 1261 } |
1262 | 1262 |
1263 # Desktop Mac. | 1263 # Desktop Mac. |
1264 if (is_mac) { | 1264 if (is_mac) { |
1265 sources += [ | 1265 sources += [ |
1266 "trace_event/malloc_dump_provider.cc", | 1266 "trace_event/malloc_dump_provider.cc", |
1267 "trace_event/malloc_dump_provider.h", | 1267 "trace_event/malloc_dump_provider.h", |
1268 ] | 1268 ] |
1269 libs = [ "bsm" ] | 1269 libs = [ |
| 1270 "ApplicationServices.framework", |
| 1271 "AppKit.framework", |
| 1272 "bsm", |
| 1273 "CoreFoundation.framework", |
| 1274 "IOKit.framework", |
| 1275 "Security.framework", |
| 1276 ] |
1270 } | 1277 } |
1271 | 1278 |
1272 # Mac or iOS. | 1279 # Mac or iOS. |
1273 if (is_mac || is_ios) { | 1280 if (is_mac || is_ios) { |
1274 sources -= [ | 1281 sources -= [ |
1275 "memory/shared_memory_posix.cc", | 1282 "memory/shared_memory_posix.cc", |
1276 "native_library_posix.cc", | 1283 "native_library_posix.cc", |
1277 "strings/sys_string_conversions_posix.cc", | 1284 "strings/sys_string_conversions_posix.cc", |
1278 "threading/platform_thread_internal_posix.cc", | 1285 "threading/platform_thread_internal_posix.cc", |
1279 ] | 1286 ] |
(...skipping 1070 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2350 | 2357 |
2351 # GYP: //base.gyp:base_java_unittest_support | 2358 # GYP: //base.gyp:base_java_unittest_support |
2352 android_library("base_java_unittest_support") { | 2359 android_library("base_java_unittest_support") { |
2353 deps = [ | 2360 deps = [ |
2354 ":base_java", | 2361 ":base_java", |
2355 ] | 2362 ] |
2356 java_files = | 2363 java_files = |
2357 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2364 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
2358 } | 2365 } |
2359 } | 2366 } |
OLD | NEW |