Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Side by Side Diff: third_party/WebKit/Source/web/BUILD.gn

Issue 2168513004: [DO NOT COMMIT] ServiceWorker: First touch of mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove an unnecessary file Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/public:mojo_bindings_blink",
25 "//third_party/WebKit/Source/core", 26 "//third_party/WebKit/Source/core",
26 "//third_party/WebKit/Source/modules", 27 "//third_party/WebKit/Source/modules",
27 "//third_party/WebKit/Source/platform", 28 "//third_party/WebKit/Source/platform",
28 "//third_party/angle:translator", 29 "//third_party/angle:translator",
29 "//third_party/icu", 30 "//third_party/icu",
30 "//ui/gfx/geometry", 31 "//ui/gfx/geometry",
31 "//v8", 32 "//v8",
32 ] 33 ]
33 34
34 configs += [ 35 configs += [
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 140
140 if (is_android) { 141 if (is_android) {
141 deps += [ 142 deps += [
142 "//base:base_java", 143 "//base:base_java",
143 "//content/public/android:content_java", 144 "//content/public/android:content_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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698