OLD | NEW |
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 group("all_blink") { |
| 6 deps = [ |
| 7 "//third_party/WebKit/Source/core", |
| 8 "//third_party/WebKit/Source/platform", |
| 9 "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 10 ] |
| 11 } |
| 12 |
5 config("blink_headers_config") { | 13 config("blink_headers_config") { |
6 include_dirs = [ ".." ] | 14 include_dirs = [ ".." ] |
7 } | 15 } |
8 | 16 |
9 # Depend on this target to use public blink API headers for things like enums | 17 # 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. | 18 # and public structures without actually linking against any Blink libraries. |
11 source_set("blink_headers") { | 19 source_set("blink_headers") { |
12 direct_dependent_configs = [ ":blink_headers_config" ] | 20 direct_dependent_configs = [ ":blink_headers_config" ] |
13 } | 21 } |
14 | 22 |
15 group("blink_devtools_frontend_resources") { | 23 group("blink_devtools_frontend_resources") { |
16 deps = [ | 24 deps = [ |
17 "//third_party/WebKit/Source/devtools:devtools_frontend_resources", | 25 "//third_party/WebKit/Source/devtools:devtools_frontend_resources", |
18 ] | 26 ] |
19 } | 27 } |
20 | 28 |
21 group("blink_generate_devtools_grd") { | 29 group("blink_generate_devtools_grd") { |
22 deps = [ | 30 deps = [ |
23 "//third_party/WebKit/Source/devtools:generate_devtools_grd", | 31 "//third_party/WebKit/Source/devtools:generate_devtools_grd", |
24 ] | 32 ] |
25 } | 33 } |
OLD | NEW |