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

Unified Diff: public/BUILD.gn

Issue 608523002: DevTools: Support debug_devtools=true arg in GN builds (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased patch, some conditionals removed/commented out 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 side-by-side diff with in-line comments
Download patch
« Source/devtools/BUILD.gn ('K') | « Source/devtools/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/BUILD.gn
diff --git a/public/BUILD.gn b/public/BUILD.gn
index 747f6168e80cfc866441baadc93452ee96c18a09..3dc23d4e5214d9cd5167c67f02852408104bb573 100644
--- a/public/BUILD.gn
+++ b/public/BUILD.gn
@@ -52,6 +52,12 @@ config("blink_headers_config") {
include_dirs = [ ".." ]
}
+config("debug_devtools") {
+ if (debug_devtools) {
+ defines = [ "DEBUG_DEVTOOLS=1" ]
+ }
+}
+
# Depend on this target to use public blink API headers for things like enums
# and public structures without actually linking against any Blink libraries.
source_set("blink_headers") {
« Source/devtools/BUILD.gn ('K') | « Source/devtools/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698