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

Side by Side Diff: base/BUILD.gn

Issue 583263003: GN: Build //base with USE_SYMBOLIZE on Linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 | no next file » | 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 865 matching lines...) Expand 10 before | Expand all | Expand 10 after
876 # Linux. 876 # Linux.
877 if (is_linux) { 877 if (is_linux) {
878 # TODO(brettw) this will need to be parameterized at some point. 878 # TODO(brettw) this will need to be parameterized at some point.
879 linux_configs = [ 879 linux_configs = [
880 "//build/config/linux:glib", 880 "//build/config/linux:glib",
881 ] 881 ]
882 882
883 configs += linux_configs 883 configs += linux_configs
884 all_dependent_configs = linux_configs 884 all_dependent_configs = linux_configs
885 885
886 defines += [ "USE_SYMBOLIZE" ]
887
886 # These dependencies are not required on Android, and in the case 888 # These dependencies are not required on Android, and in the case
887 # of xdg_mime must be excluded due to licensing restrictions. 889 # of xdg_mime must be excluded due to licensing restrictions.
888 deps += [ 890 deps += [
889 "//base/third_party/symbolize", 891 "//base/third_party/symbolize",
890 "//base/third_party/xdg_mime", 892 "//base/third_party/xdg_mime",
891 "//base/third_party/xdg_user_dirs", 893 "//base/third_party/xdg_user_dirs",
892 ] 894 ]
893 } else { 895 } else {
894 # Non-Linux. 896 # Non-Linux.
895 sources -= [ 897 sources -= [
(...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after
1472 # GYP: //base.gyp:base_unittests_apk 1474 # GYP: //base.gyp:base_unittests_apk
1473 unittest_apk("base_unittests_apk") { 1475 unittest_apk("base_unittests_apk") {
1474 deps = [ 1476 deps = [
1475 ":base_java", 1477 ":base_java",
1476 ":base_java_unittest_support", 1478 ":base_java_unittest_support",
1477 ":base_unittests", 1479 ":base_unittests",
1478 ] 1480 ]
1479 unittests_dep = ":base_unittests" 1481 unittests_dep = ":base_unittests"
1480 } 1482 }
1481 } 1483 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698