| 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 | 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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 "Foundation.framework", | 281 "Foundation.framework", |
| 281 ] | 282 ] |
| 282 } | 283 } |
| 283 | 284 |
| 284 if (remove_webcore_debug_symbols) { | 285 if (remove_webcore_debug_symbols) { |
| 285 configs -= [ "//build/config/compiler:default_symbols" ] | 286 configs -= [ "//build/config/compiler:default_symbols" ] |
| 286 configs += [ "//build/config/compiler:no_symbols" ] | 287 configs += [ "//build/config/compiler:no_symbols" ] |
| 287 } | 288 } |
| 288 } | 289 } |
| 289 | 290 |
| 291 source_set("web_agents") { |
| 292 deps = [ |
| 293 "//skia", |
| 294 "//third_party/WebKit/Source/bindings/core/v8:fake_gen_compiled", |
| 295 "//third_party/WebKit/Source/wtf", |
| 296 "//v8", |
| 297 ] |
| 298 |
| 299 sources = [ |
| 300 "agent/agent.h", |
| 301 "agent/sample/sample_agent.cc", |
| 302 "agent/sample/sample_agent.h", |
| 303 "api/frame.h", |
| 304 ] |
| 305 |
| 306 configs += [ |
| 307 "//third_party/WebKit/Source:config", |
| 308 "//third_party/WebKit/Source/core:blink_core_pch", |
| 309 ] |
| 310 } |
| 311 |
| 290 static_library("test_support") { | 312 static_library("test_support") { |
| 291 deps = [ | 313 deps = [ |
| 292 "//skia", | 314 "//skia", |
| 293 "//third_party/WebKit/Source/core:testing", | 315 "//third_party/WebKit/Source/core:testing", |
| 294 "//third_party/WebKit/Source/modules:modules_testing", | 316 "//third_party/WebKit/Source/modules:modules_testing", |
| 295 "//third_party/WebKit/Source/wtf", | 317 "//third_party/WebKit/Source/wtf", |
| 296 "//v8", | 318 "//v8", |
| 297 ] | 319 ] |
| 298 | 320 |
| 299 sources = [ | 321 sources = [ |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 | 466 |
| 445 if (is_android) { | 467 if (is_android) { |
| 446 deps += [ | 468 deps += [ |
| 447 "//base:base_java", | 469 "//base:base_java", |
| 448 "//content/public/android:content_java", | 470 "//content/public/android:content_java", |
| 449 "//content/shell/android:content_shell_assets", | 471 "//content/shell/android:content_shell_assets", |
| 450 "//net/android:net_java", | 472 "//net/android:net_java", |
| 451 ] | 473 ] |
| 452 } | 474 } |
| 453 } | 475 } |
| OLD | NEW |