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

Side by Side Diff: base/BUILD.gn

Issue 1089143002: Make the Android GN debug component build actually build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix extra whitespace Created 5 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/third_party/nspr/BUILD.gn » ('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 479 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 "task/cancelable_task_tracker.h", 490 "task/cancelable_task_tracker.h",
491 "task_runner.cc", 491 "task_runner.cc",
492 "task_runner.h", 492 "task_runner.h",
493 "task_runner_util.h", 493 "task_runner_util.h",
494 "template_util.h", 494 "template_util.h",
495 "third_party/dmg_fp/dmg_fp.h", 495 "third_party/dmg_fp/dmg_fp.h",
496 "third_party/dmg_fp/dtoa_wrapper.cc", 496 "third_party/dmg_fp/dtoa_wrapper.cc",
497 "third_party/dmg_fp/g_fmt.cc", 497 "third_party/dmg_fp/g_fmt.cc",
498 "third_party/icu/icu_utf.cc", 498 "third_party/icu/icu_utf.cc",
499 "third_party/icu/icu_utf.h", 499 "third_party/icu/icu_utf.h",
500 "third_party/nspr/prtime.cc",
501 "third_party/nspr/prtime.h",
500 "third_party/superfasthash/superfasthash.c", 502 "third_party/superfasthash/superfasthash.c",
501 "thread_task_runner_handle.cc", 503 "thread_task_runner_handle.cc",
502 "thread_task_runner_handle.h", 504 "thread_task_runner_handle.h",
503 "threading/non_thread_safe.h", 505 "threading/non_thread_safe.h",
504 "threading/non_thread_safe_impl.cc", 506 "threading/non_thread_safe_impl.cc",
505 "threading/non_thread_safe_impl.h", 507 "threading/non_thread_safe_impl.h",
506 "threading/platform_thread.h", 508 "threading/platform_thread.h",
507 "threading/platform_thread_android.cc", 509 "threading/platform_thread_android.cc",
508 "threading/platform_thread_internal_posix.cc", 510 "threading/platform_thread_internal_posix.cc",
509 "threading/platform_thread_internal_posix.h", 511 "threading/platform_thread_internal_posix.h",
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
633 "sys_info_freebsd.cc", 635 "sys_info_freebsd.cc",
634 "sys_info_openbsd.cc", 636 "sys_info_openbsd.cc",
635 ] 637 ]
636 638
637 configs += [ ":base_implementation" ] 639 configs += [ ":base_implementation" ]
638 640
639 deps = [ 641 deps = [
640 ":base_static", 642 ":base_static",
641 "//base/allocator:allocator_extension_thunks", 643 "//base/allocator:allocator_extension_thunks",
642 "//base/third_party/dynamic_annotations", 644 "//base/third_party/dynamic_annotations",
643 "//base/third_party/nspr",
644 "//third_party/modp_b64", 645 "//third_party/modp_b64",
645 ] 646 ]
646 647
647 public_deps = [ 648 public_deps = [
648 ":base_paths", 649 ":base_paths",
649 "//base/debug", 650 "//base/debug",
650 "//base/json", 651 "//base/json",
651 "//base/memory", 652 "//base/memory",
652 "//base/metrics", 653 "//base/metrics",
653 "//base/process", 654 "//base/process",
(...skipping 647 matching lines...) Expand 10 before | Expand all | Expand 10 after
1301 deps = [ 1302 deps = [
1302 ":base", 1303 ":base",
1303 ":i18n", 1304 ":i18n",
1304 ":message_loop_tests", 1305 ":message_loop_tests",
1305 ":prefs", 1306 ":prefs",
1306 ":prefs_test_support", 1307 ":prefs_test_support",
1307 "//base/allocator", 1308 "//base/allocator",
1308 "//base/test:run_all_unittests", 1309 "//base/test:run_all_unittests",
1309 "//base/test:test_support", 1310 "//base/test:test_support",
1310 "//base/third_party/dynamic_annotations", 1311 "//base/third_party/dynamic_annotations",
1311 "//base/third_party/nspr",
1312 "//base/trace_event:trace_event_unittests", 1312 "//base/trace_event:trace_event_unittests",
1313 "//testing/gmock", 1313 "//testing/gmock",
1314 "//testing/gtest", 1314 "//testing/gtest",
1315 "//third_party/icu", 1315 "//third_party/icu",
1316 ] 1316 ]
1317 1317
1318 # Allow more direct string conversions on platforms with native utf8 1318 # Allow more direct string conversions on platforms with native utf8
1319 # strings 1319 # strings
1320 if (is_mac || is_ios || is_chromeos) { 1320 if (is_mac || is_ios || is_chromeos) {
1321 defines = [ "SYSTEM_NATIVE_UTF8" ] 1321 defines = [ "SYSTEM_NATIVE_UTF8" ]
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
1480 1480
1481 # GYP: //base.gyp:base_java_unittest_support 1481 # GYP: //base.gyp:base_java_unittest_support
1482 android_library("base_java_unittest_support") { 1482 android_library("base_java_unittest_support") {
1483 deps = [ 1483 deps = [
1484 ":base_java", 1484 ":base_java",
1485 ] 1485 ]
1486 java_files = 1486 java_files =
1487 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 1487 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
1488 } 1488 }
1489 } 1489 }
OLDNEW
« no previous file with comments | « no previous file | base/third_party/nspr/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698