| 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("//third_party/WebKit/Source/config.gni") | 5 import("//third_party/WebKit/Source/config.gni") |
| 6 import("//tools/grit/grit_rule.gni") | 6 import("//tools/grit/grit_rule.gni") |
| 7 | 7 |
| 8 blink_headers_values = exec_script("//build/gypi_to_gn.py", | 8 blink_headers_values = exec_script("//build/gypi_to_gn.py", |
| 9 [ rebase_path("blink_headers.gypi") ], | 9 [ rebase_path("blink_headers.gypi") ], |
| 10 "scope", | 10 "scope", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 } | 44 } |
| 45 | 45 |
| 46 # GYP version: WebKit/public/all.gyp:all_blink | 46 # GYP version: WebKit/public/all.gyp:all_blink |
| 47 group("all_blink") { | 47 group("all_blink") { |
| 48 # This includes some test targets. Don't link into production! | 48 # This includes some test targets. Don't link into production! |
| 49 testonly = true | 49 testonly = true |
| 50 | 50 |
| 51 public_deps = [ | 51 public_deps = [ |
| 52 "//third_party/WebKit/Source/core", | 52 "//third_party/WebKit/Source/core", |
| 53 "//third_party/WebKit/Source/modules", | 53 "//third_party/WebKit/Source/modules", |
| 54 "//third_party/WebKit/Source/platform:heap_unittests", | 54 "//third_party/WebKit/Source/platform:blink_heap_unittests", |
| 55 "//third_party/WebKit/Source/platform:platform_unittests", | 55 "//third_party/WebKit/Source/platform:blink_platform_unittests", |
| 56 "//third_party/WebKit/Source/web", | 56 "//third_party/WebKit/Source/web", |
| 57 "//third_party/WebKit/Source/web:webkit_unit_tests", | 57 "//third_party/WebKit/Source/web:webkit_unit_tests", |
| 58 "//third_party/WebKit/Source/wtf:wtf_unittests", | 58 "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 59 ] | 59 ] |
| 60 | 60 |
| 61 if (is_mac) { | 61 if (is_mac) { |
| 62 # TODO(GYP): Re-enable this as soon as we can link Blink binaries on mac. | 62 # TODO(GYP): Re-enable this as soon as we can link Blink binaries on mac. |
| 63 public_deps -= [ | 63 public_deps -= [ |
| 64 "//third_party/WebKit/Source/platform:heap_unittests", | 64 "//third_party/WebKit/Source/platform:blink_heap_unittests", |
| 65 "//third_party/WebKit/Source/platform:platform_unittests", | 65 "//third_party/WebKit/Source/platform:blink_platform_unittests", |
| 66 "//third_party/WebKit/Source/web:webkit_unit_tests", | 66 "//third_party/WebKit/Source/web:webkit_unit_tests", |
| 67 ] | 67 ] |
| 68 } | 68 } |
| 69 } | 69 } |
| 70 | 70 |
| 71 config("blink_headers_config") { | 71 config("blink_headers_config") { |
| 72 include_dirs = [ ".." ] | 72 include_dirs = [ ".." ] |
| 73 } | 73 } |
| 74 | 74 |
| 75 config("debug_devtools") { | 75 config("debug_devtools") { |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 grit("image_resources") { | 145 grit("image_resources") { |
| 146 output_dir = "$root_gen_dir/blink/public/resources" | 146 output_dir = "$root_gen_dir/blink/public/resources" |
| 147 use_qualified_include = true | 147 use_qualified_include = true |
| 148 source = "blink_image_resources.grd" | 148 source = "blink_image_resources.grd" |
| 149 outputs = [ | 149 outputs = [ |
| 150 "grit/blink_image_resources.h", | 150 "grit/blink_image_resources.h", |
| 151 "blink_image_resources_100_percent.pak", | 151 "blink_image_resources_100_percent.pak", |
| 152 "blink_image_resources_200_percent.pak", | 152 "blink_image_resources_200_percent.pak", |
| 153 ] | 153 ] |
| 154 } | 154 } |
| OLD | NEW |