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