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

Unified Diff: build/config/linux/BUILD.gn

Issue 328313003: More work on content/browser GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/config/features.gni ('k') | chromeos/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/linux/BUILD.gn
diff --git a/build/config/linux/BUILD.gn b/build/config/linux/BUILD.gn
index e31f991165981df8eb4840d64e16136c954e746d..bfe242c3f7b94b17f5714c58407cd53c895ceeff 100644
--- a/build/config/linux/BUILD.gn
+++ b/build/config/linux/BUILD.gn
@@ -49,6 +49,8 @@ pkg_config("udev") {
packages = [ "libudev" ]
}
+# Note: if your target also depends on //dbus, you don't need to add this
+# config (it will get added automatically if you depend on //dbus).
pkg_config("dbus") {
packages = [ "dbus-1" ]
}
@@ -157,8 +159,7 @@ generate_library_loader("gio") {
name = "LibGioLoader"
output_h = "libgio.h"
output_cc = "libgio_loader.cc"
- # TODO(brettw) convert ti "<gio/gio.h>" once GN doesn't mangle <>.
- header = "\"gio/gio.h\""
+ header = "<gio/gio.h>"
config = ":gio_config"
functions = [
@@ -185,8 +186,7 @@ generate_library_loader("libpci") {
name = "LibPciLoader"
output_h = "libpci.h"
output_cc = "libpci_loader.cc"
- # TODO(brettw) convert to "<pci/pci.h>" once GN doesn't mangle <>.
- header = "\"pci/pci.h\""
+ header = "<pci/pci.h>"
config = ":libpci_config"
functions = [
« no previous file with comments | « build/config/features.gni ('k') | chromeos/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698