| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 import("//third_party/WebKit/public/public_features.gni") | 7 import("//third_party/WebKit/public/public_features.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("//tools/grit/grit_rule.gni") | 10 import("//tools/grit/grit_rule.gni") |
| 11 | 11 |
| 12 if (is_android) { | 12 if (is_android) { |
| 13 import("//build/config/android/rules.gni") | 13 import("//build/config/android/rules.gni") |
| 14 } | 14 } |
| 15 | 15 |
| 16 group("blink") { | 16 group("blink") { |
| 17 public_deps = [ | 17 public_deps = [ |
| 18 ":blink_headers", | 18 ":blink_headers", |
| 19 ] | 19 ] |
| 20 deps = [ | 20 deps = [ |
| 21 "//third_party/WebKit/Source/core", | 21 "//third_party/WebKit/Source/core", |
| 22 "//third_party/WebKit/Source/modules", |
| 22 "//third_party/WebKit/Source/platform", | 23 "//third_party/WebKit/Source/platform", |
| 23 "//third_party/WebKit/Source/web", | 24 "//third_party/WebKit/Source/web", |
| 24 ] | 25 ] |
| 25 } | 26 } |
| 26 | 27 |
| 27 group("test_support") { | 28 group("test_support") { |
| 28 testonly = true | 29 testonly = true |
| 29 public_deps = [ | 30 public_deps = [ |
| 30 ":test_headers", | 31 ":test_headers", |
| 31 "//third_party/WebKit/Source/platform:test_support", | 32 "//third_party/WebKit/Source/platform:test_support", |
| (...skipping 779 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 811 sources = [ | 812 sources = [ |
| 812 "web/ConsoleMessageStructTraits.cpp", | 813 "web/ConsoleMessageStructTraits.cpp", |
| 813 "web/ConsoleMessageStructTraits.h", | 814 "web/ConsoleMessageStructTraits.h", |
| 814 ] | 815 ] |
| 815 deps = [ | 816 deps = [ |
| 816 ":blink_headers", | 817 ":blink_headers", |
| 817 ":mojo_bindings_shared__generator", | 818 ":mojo_bindings_shared__generator", |
| 818 "//mojo/public/cpp/bindings:struct_traits", | 819 "//mojo/public/cpp/bindings:struct_traits", |
| 819 ] | 820 ] |
| 820 } | 821 } |
| OLD | NEW |