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

Side by Side Diff: public/BUILD.gn

Issue 302093008: Add devtools resources rules to the GN build. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/devtools/BUILD.gn ('k') | 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 config("blink_headers_config") { 5 config("blink_headers_config") {
6 include_dirs = [ ".." ] 6 include_dirs = [ ".." ]
7 } 7 }
8 8
9 # Depend on this target to use public blink API headers for things like enums 9 # Depend on this target to use public blink API headers for things like enums
10 # and public structures without actually linking against any Blink libraries. 10 # and public structures without actually linking against any Blink libraries.
11 source_set("blink_headers") { 11 source_set("blink_headers") {
12 direct_dependent_configs = [ ":blink_headers_config" ] 12 direct_dependent_configs = [ ":blink_headers_config" ]
13 } 13 }
14
15 group("blink_devtools_frontend_resources") {
16 deps = [
17 "//third_party/WebKit/Source/devtools:devtools_frontend_resources",
18 ]
19 }
20
21 group("blink_generate_devtools_grd") {
22 deps = [
23 "//third_party/WebKit/Source/devtools:generate_devtools_grd",
24 ]
25 }
OLDNEW
« no previous file with comments | « Source/devtools/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698