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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 import("//third_party/WebKit/Source/bindings/bindings.gni") | 7 import("//third_party/WebKit/Source/bindings/bindings.gni") |
8 import("//third_party/WebKit/Source/config.gni") | 8 import("//third_party/WebKit/Source/config.gni") |
9 import("//third_party/WebKit/Source/core/core.gni") | 9 import("//third_party/WebKit/Source/core/core.gni") |
10 import("//third_party/WebKit/Source/modules/modules.gni") | 10 import("//third_party/WebKit/Source/modules/modules.gni") |
11 import("//third_party/WebKit/Source/platform/platform.gni") | 11 import("//third_party/WebKit/Source/platform/platform.gni") |
12 | 12 |
13 visibility = [ "//third_party/WebKit/*" ] | 13 visibility = [ "//third_party/WebKit/*" ] |
14 web_gypi = exec_script("//build/gypi_to_gn.py", | 14 web_gypi = exec_script("//build/gypi_to_gn.py", |
15 [ rebase_path("web.gypi") ], | 15 [ rebase_path("web.gypi") ], |
16 "scope", | 16 "scope", |
17 [ "web.gypi" ]) | 17 [ "web.gypi" ]) |
18 web_unittest_files = web_gypi.web_unittest_files | 18 web_unittest_files = web_gypi.web_unittest_files |
19 | 19 |
20 component("web") { | 20 component("web") { |
21 output_name = "blink_web" | 21 output_name = "blink_web" |
22 | 22 |
23 deps = [ | 23 deps = [ |
24 "//skia", | 24 "//skia", |
25 "//third_party/WebKit/Source/core", | 25 "//third_party/WebKit/Source/core", |
26 "//third_party/WebKit/Source/modules", | 26 "//third_party/WebKit/Source/modules", |
27 "//third_party/WebKit/Source/platform", | 27 "//third_party/WebKit/Source/platform", |
28 "//third_party/angle:translator", | 28 "//third_party/angle:translator", |
29 "//third_party/icu", | 29 "//third_party/icu", |
| 30 "//ui/gfx/geometry", |
30 "//v8", | 31 "//v8", |
31 ] | 32 ] |
32 | 33 |
33 include_dirs = [ "//third_party/skia/include/utils" ] | 34 include_dirs = [ "//third_party/skia/include/utils" ] |
34 | 35 |
35 configs += [ | 36 configs += [ |
36 "//third_party/WebKit/Source:config", | 37 "//third_party/WebKit/Source:config", |
37 "//third_party/WebKit/Source:inside_blink", | 38 "//third_party/WebKit/Source:inside_blink", |
38 "//third_party/WebKit/Source:non_test_config", | 39 "//third_party/WebKit/Source:non_test_config", |
39 ] | 40 ] |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 } | 140 } |
140 | 141 |
141 if (is_android) { | 142 if (is_android) { |
142 apk_deps = [ | 143 apk_deps = [ |
143 "//base:base_java", | 144 "//base:base_java", |
144 "//content/shell/android:content_shell_assets", | 145 "//content/shell/android:content_shell_assets", |
145 "//net/android:net_java", | 146 "//net/android:net_java", |
146 ] | 147 ] |
147 } | 148 } |
148 } | 149 } |
OLD | NEW |