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

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: 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') | base/base.gyp » ('J')
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 1230 matching lines...) Expand 10 before | Expand all | Expand 10 after
1241 "threading/watchdog_unittest.cc", 1241 "threading/watchdog_unittest.cc",
1242 "threading/worker_pool_posix_unittest.cc", 1242 "threading/worker_pool_posix_unittest.cc",
1243 "threading/worker_pool_unittest.cc", 1243 "threading/worker_pool_unittest.cc",
1244 "time/pr_time_unittest.cc", 1244 "time/pr_time_unittest.cc",
1245 "time/time_unittest.cc", 1245 "time/time_unittest.cc",
1246 "time/time_win_unittest.cc", 1246 "time/time_win_unittest.cc",
1247 "timer/hi_res_timer_manager_unittest.cc", 1247 "timer/hi_res_timer_manager_unittest.cc",
1248 "timer/mock_timer_unittest.cc", 1248 "timer/mock_timer_unittest.cc",
1249 "timer/timer_unittest.cc", 1249 "timer/timer_unittest.cc",
1250 "tools_sanity_unittest.cc", 1250 "tools_sanity_unittest.cc",
1251 "trace_event/memory_dump_manager_unittest.cc",
1252 "trace_event/process_memory_maps_dump_provider_unittest.cc",
1253 "trace_event/process_memory_totals_dump_provider_unittest.cc",
1254 "trace_event/trace_event_argument_unittest.cc",
1255 "trace_event/trace_event_memory_unittest.cc",
1256 "trace_event/trace_event_synthetic_delay_unittest.cc",
1257 "trace_event/trace_event_system_stats_monitor_unittest.cc",
1258 "trace_event/trace_event_unittest.cc",
1259 "trace_event/trace_event_win_unittest.cc",
1260 "tracked_objects_unittest.cc", 1251 "tracked_objects_unittest.cc",
1261 "tuple_unittest.cc", 1252 "tuple_unittest.cc",
1262 "values_unittest.cc", 1253 "values_unittest.cc",
1263 "version_unittest.cc", 1254 "version_unittest.cc",
1264 "vlog_unittest.cc", 1255 "vlog_unittest.cc",
1265 "win/dllmain.cc", 1256 "win/dllmain.cc",
1266 "win/enum_variant_unittest.cc", 1257 "win/enum_variant_unittest.cc",
1267 "win/event_trace_consumer_unittest.cc", 1258 "win/event_trace_consumer_unittest.cc",
1268 "win/event_trace_controller_unittest.cc", 1259 "win/event_trace_controller_unittest.cc",
1269 "win/event_trace_provider_unittest.cc", 1260 "win/event_trace_provider_unittest.cc",
(...skipping 17 matching lines...) Expand all
1287 ":base", 1278 ":base",
1288 ":i18n", 1279 ":i18n",
1289 ":message_loop_tests", 1280 ":message_loop_tests",
1290 ":prefs", 1281 ":prefs",
1291 ":prefs_test_support", 1282 ":prefs_test_support",
1292 "//base/allocator", 1283 "//base/allocator",
1293 "//base/test:run_all_unittests", 1284 "//base/test:run_all_unittests",
1294 "//base/test:test_support", 1285 "//base/test:test_support",
1295 "//base/third_party/dynamic_annotations", 1286 "//base/third_party/dynamic_annotations",
1296 "//base/third_party/nspr", 1287 "//base/third_party/nspr",
1288 "//base/trace_event:trace_event_unittests",
1297 "//testing/gmock", 1289 "//testing/gmock",
1298 "//testing/gtest", 1290 "//testing/gtest",
1299 "//third_party/icu", 1291 "//third_party/icu",
1300 ] 1292 ]
1301 1293
1302 # Allow more direct string conversions on platforms with native utf8 1294 # Allow more direct string conversions on platforms with native utf8
1303 # strings 1295 # strings
1304 if (is_mac || is_ios || is_chromeos) { 1296 if (is_mac || is_ios || is_chromeos) {
1305 defines = [ "SYSTEM_NATIVE_UTF8" ] 1297 defines = [ "SYSTEM_NATIVE_UTF8" ]
1306 } 1298 }
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
1461 1453
1462 # GYP: //base.gyp:base_java_unittest_support 1454 # GYP: //base.gyp:base_java_unittest_support
1463 android_library("base_java_unittest_support") { 1455 android_library("base_java_unittest_support") {
1464 deps = [ 1456 deps = [
1465 ":base_java", 1457 ":base_java",
1466 ] 1458 ]
1467 java_files = 1459 java_files =
1468 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 1460 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
1469 } 1461 }
1470 } 1462 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gyp » ('j') | base/base.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698