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

Side by Side Diff: build/config/linux/BUILD.gn

Issue 365793002: Add lots of GN targets (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « build/config/features.gni ('k') | build/json_schema_compile.gypi » ('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/linux/pkg_config.gni") 5 import("//build/config/linux/pkg_config.gni")
6 import("//build/config/sysroot.gni") 6 import("//build/config/sysroot.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//tools/generate_library_loader/generate_library_loader.gni") 8 import("//tools/generate_library_loader/generate_library_loader.gni")
9 9
10 config("sdk") { 10 config("sdk") {
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 pkg_config("udev") { 49 pkg_config("udev") {
50 packages = [ "libudev" ] 50 packages = [ "libudev" ]
51 } 51 }
52 52
53 # Note: if your target also depends on //dbus, you don't need to add this 53 # Note: if your target also depends on //dbus, you don't need to add this
54 # config (it will get added automatically if you depend on //dbus). 54 # config (it will get added automatically if you depend on //dbus).
55 pkg_config("dbus") { 55 pkg_config("dbus") {
56 packages = [ "dbus-1" ] 56 packages = [ "dbus-1" ]
57 } 57 }
58 58
59 pkg_config("gnome_keyring") {
60 packages = [ "gnome-keyring-1" ]
61 }
62
59 if (use_evdev_gestures) { 63 if (use_evdev_gestures) {
60 pkg_config("libevdev-cros") { 64 pkg_config("libevdev-cros") {
61 packages = [ "libevdev-cros" ] 65 packages = [ "libevdev-cros" ]
62 } 66 }
63 67
64 pkg_config("libgestures") { 68 pkg_config("libgestures") {
65 packages = [ "libgestures" ] 69 packages = [ "libgestures" ]
66 } 70 }
67 } 71 }
68 72
(...skipping 19 matching lines...) Expand all
88 } 92 }
89 93
90 config("xext") { 94 config("xext") {
91 libs = [ "Xext" ] 95 libs = [ "Xext" ]
92 } 96 }
93 97
94 config("xrandr") { 98 config("xrandr") {
95 libs = [ "xrandr" ] 99 libs = [ "xrandr" ]
96 } 100 }
97 101
102 config("xscrnsaver") {
103 libs = [ "Xss" ]
104 }
105
98 config("libcap") { 106 config("libcap") {
99 libs = [ "cap" ] 107 libs = [ "cap" ]
100 } 108 }
101 109
102 config("libresolv") { 110 config("libresolv") {
103 libs = [ "resolv" ] 111 libs = [ "resolv" ]
104 } 112 }
105 113
106 pkg_config("gconf") { 114 pkg_config("gconf") {
107 packages = [ "gconf-2.0" ] 115 packages = [ "gconf-2.0" ]
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 "spd_resume", 174 "spd_resume",
167 "spd_set_notification_on", 175 "spd_set_notification_on",
168 "spd_set_voice_rate", 176 "spd_set_voice_rate",
169 "spd_set_voice_pitch", 177 "spd_set_voice_pitch",
170 "spd_list_synthesis_voices", 178 "spd_list_synthesis_voices",
171 "spd_set_synthesis_voice", 179 "spd_set_synthesis_voice",
172 "spd_list_modules", 180 "spd_list_modules",
173 "spd_set_output_module", 181 "spd_set_output_module",
174 ] 182 ]
175 } 183 }
OLDNEW
« no previous file with comments | « build/config/features.gni ('k') | build/json_schema_compile.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698