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

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

Issue 2591803002: NOT FOR LANDING: Thread the needle through all webmodules.
Patch Set: Needle threaded all the way. Created 3 years, 12 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 11
12 visibility = [ "//third_party/WebKit/*" ] 12 visibility = [ "//third_party/WebKit/*" ]
13 13
14 component("web") { 14 component("web") {
15 output_name = "blink_web" 15 output_name = "blink_web"
16 16
17 deps = [ 17 deps = [
18 ":web_agents",
18 "//skia", 19 "//skia",
19 "//third_party/WebKit/Source/core", 20 "//third_party/WebKit/Source/core",
20 "//third_party/WebKit/Source/modules", 21 "//third_party/WebKit/Source/modules",
21 "//third_party/WebKit/Source/platform", 22 "//third_party/WebKit/Source/platform",
22 "//third_party/angle:translator", 23 "//third_party/angle:translator",
23 "//third_party/icu", 24 "//third_party/icu",
24 "//ui/gfx/geometry", 25 "//ui/gfx/geometry",
25 "//v8", 26 "//v8",
26 ] 27 ]
27 28
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 "Foundation.framework", 277 "Foundation.framework",
277 ] 278 ]
278 } 279 }
279 280
280 if (remove_webcore_debug_symbols) { 281 if (remove_webcore_debug_symbols) {
281 configs -= [ "//build/config/compiler:default_symbols" ] 282 configs -= [ "//build/config/compiler:default_symbols" ]
282 configs += [ "//build/config/compiler:no_symbols" ] 283 configs += [ "//build/config/compiler:no_symbols" ]
283 } 284 }
284 } 285 }
285 286
287 static_library("web_agents") {
288 deps = [
289 "//skia",
290 "//third_party/WebKit/Source/bindings/core/v8:fake_gen",
291 "//third_party/WebKit/Source/wtf",
292 "//v8",
293 ]
294
295 sources = [
296 "agent/agent.h",
297 "agent/sample/sample_agent.cc",
298 "agent/sample/sample_agent.h",
299 "api/frame.h",
300 ]
301
302 configs += [
303 "//third_party/WebKit/Source:config",
304 "//third_party/WebKit/Source/core:blink_core_pch",
305 ]
306
307 include_dirs = [ ".." ]
308 }
309
286 static_library("test_support") { 310 static_library("test_support") {
287 deps = [ 311 deps = [
288 "//skia", 312 "//skia",
289 "//third_party/WebKit/Source/core:testing", 313 "//third_party/WebKit/Source/core:testing",
290 "//third_party/WebKit/Source/modules:modules_testing", 314 "//third_party/WebKit/Source/modules:modules_testing",
291 "//third_party/WebKit/Source/wtf", 315 "//third_party/WebKit/Source/wtf",
292 "//v8", 316 "//v8",
293 ] 317 ]
294 318
295 sources = [ 319 sources = [
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
438 462
439 if (is_android) { 463 if (is_android) {
440 deps += [ 464 deps += [
441 "//base:base_java", 465 "//base:base_java",
442 "//content/public/android:content_java", 466 "//content/public/android:content_java",
443 "//content/shell/android:content_shell_assets", 467 "//content/shell/android:content_shell_assets",
444 "//net/android:net_java", 468 "//net/android:net_java",
445 ] 469 ]
446 } 470 }
447 } 471 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698