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

Side by Side Diff: base/BUILD.gn

Issue 1014923002: [tracing] Move GN/gyp build files under trace_event (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 9 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 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 if (is_android) { 8 if (is_android) {
9 import("//build/config/android/rules.gni") 9 import("//build/config/android/rules.gni")
10 } 10 }
(...skipping 1233 matching lines...) Expand 10 before | Expand all | Expand 10 after
1244 "threading/watchdog_unittest.cc", 1244 "threading/watchdog_unittest.cc",
1245 "threading/worker_pool_posix_unittest.cc", 1245 "threading/worker_pool_posix_unittest.cc",
1246 "threading/worker_pool_unittest.cc", 1246 "threading/worker_pool_unittest.cc",
1247 "time/pr_time_unittest.cc", 1247 "time/pr_time_unittest.cc",
1248 "time/time_unittest.cc", 1248 "time/time_unittest.cc",
1249 "time/time_win_unittest.cc", 1249 "time/time_win_unittest.cc",
1250 "timer/hi_res_timer_manager_unittest.cc", 1250 "timer/hi_res_timer_manager_unittest.cc",
1251 "timer/mock_timer_unittest.cc", 1251 "timer/mock_timer_unittest.cc",
1252 "timer/timer_unittest.cc", 1252 "timer/timer_unittest.cc",
1253 "tools_sanity_unittest.cc", 1253 "tools_sanity_unittest.cc",
1254 "trace_event/memory_allocator_dump_unittest.cc",
1255 "trace_event/memory_dump_manager_unittest.cc",
1256 "trace_event/process_memory_maps_dump_provider_unittest.cc",
1257 "trace_event/process_memory_totals_dump_provider_unittest.cc",
1258 "trace_event/trace_event_argument_unittest.cc",
1259 "trace_event/trace_event_memory_unittest.cc",
1260 "trace_event/trace_event_synthetic_delay_unittest.cc",
1261 "trace_event/trace_event_system_stats_monitor_unittest.cc",
1262 "trace_event/trace_event_unittest.cc",
1263 "trace_event/trace_event_win_unittest.cc",
1264 "tracked_objects_unittest.cc", 1254 "tracked_objects_unittest.cc",
1265 "tuple_unittest.cc", 1255 "tuple_unittest.cc",
1266 "values_unittest.cc", 1256 "values_unittest.cc",
1267 "version_unittest.cc", 1257 "version_unittest.cc",
1268 "vlog_unittest.cc", 1258 "vlog_unittest.cc",
1269 "win/dllmain.cc", 1259 "win/dllmain.cc",
1270 "win/enum_variant_unittest.cc", 1260 "win/enum_variant_unittest.cc",
1271 "win/event_trace_consumer_unittest.cc", 1261 "win/event_trace_consumer_unittest.cc",
1272 "win/event_trace_controller_unittest.cc", 1262 "win/event_trace_controller_unittest.cc",
1273 "win/event_trace_provider_unittest.cc", 1263 "win/event_trace_provider_unittest.cc",
(...skipping 17 matching lines...) Expand all
1291 ":base", 1281 ":base",
1292 ":i18n", 1282 ":i18n",
1293 ":message_loop_tests", 1283 ":message_loop_tests",
1294 ":prefs", 1284 ":prefs",
1295 ":prefs_test_support", 1285 ":prefs_test_support",
1296 "//base/allocator", 1286 "//base/allocator",
1297 "//base/test:run_all_unittests", 1287 "//base/test:run_all_unittests",
1298 "//base/test:test_support", 1288 "//base/test:test_support",
1299 "//base/third_party/dynamic_annotations", 1289 "//base/third_party/dynamic_annotations",
1300 "//base/third_party/nspr", 1290 "//base/third_party/nspr",
1291 "//base/trace_event:trace_event_unittests",
1301 "//testing/gmock", 1292 "//testing/gmock",
1302 "//testing/gtest", 1293 "//testing/gtest",
1303 "//third_party/icu", 1294 "//third_party/icu",
1304 ] 1295 ]
1305 1296
1306 # Allow more direct string conversions on platforms with native utf8 1297 # Allow more direct string conversions on platforms with native utf8
1307 # strings 1298 # strings
1308 if (is_mac || is_ios || is_chromeos) { 1299 if (is_mac || is_ios || is_chromeos) {
1309 defines = [ "SYSTEM_NATIVE_UTF8" ] 1300 defines = [ "SYSTEM_NATIVE_UTF8" ]
1310 } 1301 }
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
1465 1456
1466 # GYP: //base.gyp:base_java_unittest_support 1457 # GYP: //base.gyp:base_java_unittest_support
1467 android_library("base_java_unittest_support") { 1458 android_library("base_java_unittest_support") {
1468 deps = [ 1459 deps = [
1469 ":base_java", 1460 ":base_java",
1470 ] 1461 ]
1471 java_files = 1462 java_files =
1472 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 1463 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
1473 } 1464 }
1474 } 1465 }
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