| 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 import("//tools/grit/grit_rule.gni") | 5 import("//tools/grit/grit_rule.gni") |
| 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 28 matching lines...) Expand all Loading... |
| 39 testonly = true | 39 testonly = true |
| 40 | 40 |
| 41 deps = [ | 41 deps = [ |
| 42 "//third_party/WebKit/Source/core", | 42 "//third_party/WebKit/Source/core", |
| 43 "//third_party/WebKit/Source/modules", | 43 "//third_party/WebKit/Source/modules", |
| 44 "//third_party/WebKit/Source/platform:heap_unittests", | 44 "//third_party/WebKit/Source/platform:heap_unittests", |
| 45 "//third_party/WebKit/Source/platform:platform_unittests", | 45 "//third_party/WebKit/Source/platform:platform_unittests", |
| 46 "//third_party/WebKit/Source/web", | 46 "//third_party/WebKit/Source/web", |
| 47 "//third_party/WebKit/Source/wtf:wtf_unittests", | 47 "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 48 ] | 48 ] |
| 49 if (is_mac) { |
| 50 # TODO(GYP): Re-enable this as soon as we can link Blink binaries on mac. |
| 51 deps -= [ |
| 52 "//third_party/WebKit/Source/platform:heap_unittests", |
| 53 "//third_party/WebKit/Source/platform:platform_unittests", |
| 54 ] |
| 55 } |
| 49 } | 56 } |
| 50 | 57 |
| 51 config("blink_headers_config") { | 58 config("blink_headers_config") { |
| 52 include_dirs = [ ".." ] | 59 include_dirs = [ ".." ] |
| 53 } | 60 } |
| 54 | 61 |
| 55 config("debug_devtools") { | 62 config("debug_devtools") { |
| 56 if (debug_devtools) { | 63 if (debug_devtools) { |
| 57 defines = [ "DEBUG_DEVTOOLS=1" ] | 64 defines = [ "DEBUG_DEVTOOLS=1" ] |
| 58 } | 65 } |
| (...skipping 29 matching lines...) Expand all Loading... |
| 88 grit("resources") { | 95 grit("resources") { |
| 89 output_dir = "$root_gen_dir/blink/public/resources" | 96 output_dir = "$root_gen_dir/blink/public/resources" |
| 90 use_qualified_include = true | 97 use_qualified_include = true |
| 91 source = "blink_resources.grd" | 98 source = "blink_resources.grd" |
| 92 outputs = [ | 99 outputs = [ |
| 93 "grit/blink_resources.h", | 100 "grit/blink_resources.h", |
| 94 "blink_resources.rc", | 101 "blink_resources.rc", |
| 95 "blink_resources.pak", | 102 "blink_resources.pak", |
| 96 ] | 103 ] |
| 97 } | 104 } |
| OLD | NEW |