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

Unified Diff: content/browser/devtools/BUILD.gn

Issue 419613002: Fix GN linking issues. (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/common/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/devtools/BUILD.gn
diff --git a/content/browser/devtools/BUILD.gn b/content/browser/devtools/BUILD.gn
index ffeb2491809cf04f3b7026b02cdfb6042a87968c..c5d2ab2b4e51bb3145deefcb846555b710acf40a 100644
--- a/content/browser/devtools/BUILD.gn
+++ b/content/browser/devtools/BUILD.gn
@@ -50,8 +50,8 @@ action("devtools_resources") {
]
}
-action("devtools_protocol_constants") {
- visibility = ":resources"
+action("gen_devtools_protocol_constants") {
+ visibility = ":devtools_protocol_constants"
script = "//content/public/browser/devtools_protocol_constants_generator.py"
@@ -69,3 +69,8 @@ action("devtools_protocol_constants") {
rebase_path(browser_protocol, root_build_dir),
]
}
+
+source_set("devtools_protocol_constants") {
+ visibility = ":resources"
+ sources = get_target_outputs(":gen_devtools_protocol_constants")
+}
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698