| 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 28 matching lines...) Expand all Loading... |
| 39 } | 39 } |
| 40 | 40 |
| 41 # This target provides a minimal set of Blink APIs such as WebString to use in | 41 # This target provides a minimal set of Blink APIs such as WebString to use in |
| 42 # places that cannot link against the full Blink library. FIXME: We really | 42 # places that cannot link against the full Blink library. FIXME: We really |
| 43 # shouldn't have this at all and should instead remove all uses of Blink's API | 43 # shouldn't have this at all and should instead remove all uses of Blink's API |
| 44 # types from places that can't link against Blink. crbug.com/248653 | 44 # types from places that can't link against Blink. crbug.com/248653 |
| 45 # | 45 # |
| 46 # GYP version: WebKit/public/blink.gyp:blink_minimal | 46 # GYP version: WebKit/public/blink.gyp:blink_minimal |
| 47 group("blink_minimal") { | 47 group("blink_minimal") { |
| 48 public_deps = [ | 48 public_deps = [ |
| 49 ":blink_headers", |
| 49 "//third_party/WebKit/Source/platform:blink_common", | 50 "//third_party/WebKit/Source/platform:blink_common", |
| 50 ] | 51 ] |
| 51 } | 52 } |
| 52 | 53 |
| 53 # GYP version: WebKit/public/blink.gyp:blink_test_support | 54 # GYP version: WebKit/public/blink.gyp:blink_test_support |
| 54 group("test_support") { | 55 group("test_support") { |
| 55 public_deps = [ | 56 public_deps = [ |
| 56 "//third_party/WebKit/Source/web:test_support", | 57 "//third_party/WebKit/Source/web:test_support", |
| 57 ] | 58 ] |
| 58 } | 59 } |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 grit("image_resources") { | 163 grit("image_resources") { |
| 163 output_dir = "$root_gen_dir/blink/public/resources" | 164 output_dir = "$root_gen_dir/blink/public/resources" |
| 164 use_qualified_include = true | 165 use_qualified_include = true |
| 165 source = "blink_image_resources.grd" | 166 source = "blink_image_resources.grd" |
| 166 outputs = [ | 167 outputs = [ |
| 167 "grit/blink_image_resources.h", | 168 "grit/blink_image_resources.h", |
| 168 "blink_image_resources_100_percent.pak", | 169 "blink_image_resources_100_percent.pak", |
| 169 "blink_image_resources_200_percent.pak", | 170 "blink_image_resources_200_percent.pak", |
| 170 ] | 171 ] |
| 171 } | 172 } |
| OLD | NEW |