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

Side by Side Diff: base/BUILD.gn

Issue 651253002: Enforce handle ownership in base::Process (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add empty line Created 6 years, 2 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 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/rules.gni") 8 import("//build/config/android/rules.gni")
9 } 9 }
10 10
(...skipping 1209 matching lines...) Expand 10 before | Expand all | Expand 10 after
1220 "prefs/pref_notifier_impl_unittest.cc", 1220 "prefs/pref_notifier_impl_unittest.cc",
1221 "prefs/pref_service_unittest.cc", 1221 "prefs/pref_service_unittest.cc",
1222 "prefs/pref_value_map_unittest.cc", 1222 "prefs/pref_value_map_unittest.cc",
1223 "prefs/pref_value_store_unittest.cc", 1223 "prefs/pref_value_store_unittest.cc",
1224 "prefs/scoped_user_pref_update_unittest.cc", 1224 "prefs/scoped_user_pref_update_unittest.cc",
1225 "process/memory_unittest.cc", 1225 "process/memory_unittest.cc",
1226 "process/memory_unittest_mac.h", 1226 "process/memory_unittest_mac.h",
1227 "process/memory_unittest_mac.mm", 1227 "process/memory_unittest_mac.mm",
1228 "process/process_metrics_unittest.cc", 1228 "process/process_metrics_unittest.cc",
1229 "process/process_metrics_unittest_ios.cc", 1229 "process/process_metrics_unittest_ios.cc",
1230 "process/process_unittest.cc",
1230 "process/process_util_unittest.cc", 1231 "process/process_util_unittest.cc",
1231 "process/process_util_unittest_ios.cc", 1232 "process/process_util_unittest_ios.cc",
1232 "profiler/tracked_time_unittest.cc", 1233 "profiler/tracked_time_unittest.cc",
1233 "rand_util_unittest.cc", 1234 "rand_util_unittest.cc",
1234 "numerics/safe_numerics_unittest.cc", 1235 "numerics/safe_numerics_unittest.cc",
1235 "scoped_clear_errno_unittest.cc", 1236 "scoped_clear_errno_unittest.cc",
1236 "scoped_generic_unittest.cc", 1237 "scoped_generic_unittest.cc",
1237 "scoped_native_library_unittest.cc", 1238 "scoped_native_library_unittest.cc",
1238 "security_unittest.cc", 1239 "security_unittest.cc",
1239 "sequence_checker_unittest.cc", 1240 "sequence_checker_unittest.cc",
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
1331 "//testing/gtest", 1332 "//testing/gtest",
1332 "//third_party/icu", 1333 "//third_party/icu",
1333 ] 1334 ]
1334 1335
1335 if (is_ios) { 1336 if (is_ios) {
1336 sources -= [ 1337 sources -= [
1337 "metrics/stats_table_uinittest.cc", # Requires spawning a process. 1338 "metrics/stats_table_uinittest.cc", # Requires spawning a process.
1338 "process/memory_unittest.cc", 1339 "process/memory_unittest.cc",
1339 "process/memory_unittest_mac.h", 1340 "process/memory_unittest_mac.h",
1340 "process/memory_unittest_mac.mm", 1341 "process/memory_unittest_mac.mm",
1342 "process/process_unittest.cc",
1341 "process/process_util_unittest.cc", 1343 "process/process_util_unittest.cc",
1342 ] 1344 ]
1343 1345
1344 # Pull in specific Mac files for iOS (which have been filtered out by file 1346 # Pull in specific Mac files for iOS (which have been filtered out by file
1345 # name rules). 1347 # name rules).
1346 set_sources_assignment_filter([]) 1348 set_sources_assignment_filter([])
1347 sources += [ 1349 sources += [
1348 "mac/bind_objc_block_unittest.mm", 1350 "mac/bind_objc_block_unittest.mm",
1349 "mac/foundation_util_unittest.mm", 1351 "mac/foundation_util_unittest.mm",
1350 "mac/objc_property_releaser_unittest.mm", 1352 "mac/objc_property_releaser_unittest.mm",
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
1491 # GYP: //base.gyp:base_unittests_apk 1493 # GYP: //base.gyp:base_unittests_apk
1492 unittest_apk("base_unittests_apk") { 1494 unittest_apk("base_unittests_apk") {
1493 deps = [ 1495 deps = [
1494 ":base_java", 1496 ":base_java",
1495 ":base_java_unittest_support", 1497 ":base_java_unittest_support",
1496 ":base_unittests", 1498 ":base_unittests",
1497 ] 1499 ]
1498 unittests_dep = ":base_unittests" 1500 unittests_dep = ":base_unittests"
1499 } 1501 }
1500 } 1502 }
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