| 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 # GYP version: WebKit/public/blink.gyp:blink | 7 # GYP version: WebKit/public/blink.gyp:blink |
| 8 group("blink") { | 8 group("blink") { |
| 9 deps = [ | 9 deps = [ |
| 10 ":blink_headers", | 10 ":blink_headers", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 # deps = [ | 31 # deps = [ |
| 32 # "//third_party/WebKit/Source/web:test_support", | 32 # "//third_party/WebKit/Source/web:test_support", |
| 33 # ] | 33 # ] |
| 34 #} | 34 #} |
| 35 | 35 |
| 36 # GYP version: WebKit/public/all.gyp:all_blink | 36 # GYP version: WebKit/public/all.gyp:all_blink |
| 37 group("all_blink") { | 37 group("all_blink") { |
| 38 deps = [ | 38 deps = [ |
| 39 "//third_party/WebKit/Source/core", | 39 "//third_party/WebKit/Source/core", |
| 40 "//third_party/WebKit/Source/modules", | 40 "//third_party/WebKit/Source/modules", |
| 41 "//third_party/WebKit/Source/platform:heap_unittests", |
| 42 "//third_party/WebKit/Source/platform:platform_unittests", |
| 41 "//third_party/WebKit/Source/web", | 43 "//third_party/WebKit/Source/web", |
| 42 "//third_party/WebKit/Source/wtf:wtf_unittests", | 44 "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 43 ] | 45 ] |
| 44 } | 46 } |
| 45 | 47 |
| 46 } # !is_android | 48 } # !is_android |
| 47 | 49 |
| 48 config("blink_headers_config") { | 50 config("blink_headers_config") { |
| 49 include_dirs = [ ".." ] | 51 include_dirs = [ ".." ] |
| 50 } | 52 } |
| (...skipping 10 matching lines...) Expand all Loading... |
| 61 "//third_party/WebKit/Source/devtools:devtools_frontend_resources", | 63 "//third_party/WebKit/Source/devtools:devtools_frontend_resources", |
| 62 ] | 64 ] |
| 63 } | 65 } |
| 64 | 66 |
| 65 # GYP version: WebKit/public/blink_devtools.gyp:blink_generate_devtools_grd | 67 # GYP version: WebKit/public/blink_devtools.gyp:blink_generate_devtools_grd |
| 66 group("blink_generate_devtools_grd") { | 68 group("blink_generate_devtools_grd") { |
| 67 deps = [ | 69 deps = [ |
| 68 "//third_party/WebKit/Source/devtools:generate_devtools_grd", | 70 "//third_party/WebKit/Source/devtools:generate_devtools_grd", |
| 69 ] | 71 ] |
| 70 } | 72 } |
| OLD | NEW |