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