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") |
(...skipping 22 matching lines...) Expand all Loading... |
33 | 33 |
34 group("all_blink") { | 34 group("all_blink") { |
35 # This includes some test targets. Don't link into production! | 35 # This includes some test targets. Don't link into production! |
36 testonly = true | 36 testonly = true |
37 | 37 |
38 public_deps = [ | 38 public_deps = [ |
39 "//third_party/WebKit/Source/core", | 39 "//third_party/WebKit/Source/core", |
40 "//third_party/WebKit/Source/modules", | 40 "//third_party/WebKit/Source/modules", |
41 "//third_party/WebKit/Source/platform:blink_platform_unittests", | 41 "//third_party/WebKit/Source/platform:blink_platform_unittests", |
42 "//third_party/WebKit/Source/platform/heap:blink_heap_unittests", | 42 "//third_party/WebKit/Source/platform/heap:blink_heap_unittests", |
| 43 "//third_party/WebKit/Source/platform/wtf:wtf_unittests", |
43 "//third_party/WebKit/Source/web", | 44 "//third_party/WebKit/Source/web", |
44 "//third_party/WebKit/Source/web:webkit_unit_tests", | 45 "//third_party/WebKit/Source/web:webkit_unit_tests", |
45 "//third_party/WebKit/Source/wtf:wtf_unittests", | |
46 ] | 46 ] |
47 } | 47 } |
48 | 48 |
49 config("blink_headers_config") { | 49 config("blink_headers_config") { |
50 include_dirs = [ | 50 include_dirs = [ |
51 "..", | 51 "..", |
52 "$root_gen_dir/third_party/WebKit", | 52 "$root_gen_dir/third_party/WebKit", |
53 ] | 53 ] |
54 | 54 |
55 # Allow :blink_headers to include v8.h without linking to it. | 55 # Allow :blink_headers to include v8.h without linking to it. |
(...skipping 744 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
800 source_set("shared_typemap_traits") { | 800 source_set("shared_typemap_traits") { |
801 visibility = [ ":*" ] | 801 visibility = [ ":*" ] |
802 sources = [ | 802 sources = [ |
803 "web/ConsoleMessageStructTraits.cpp", | 803 "web/ConsoleMessageStructTraits.cpp", |
804 "web/ConsoleMessageStructTraits.h", | 804 "web/ConsoleMessageStructTraits.h", |
805 ] | 805 ] |
806 deps = [ | 806 deps = [ |
807 ":mojo_bindings_shared__generator", | 807 ":mojo_bindings_shared__generator", |
808 ] | 808 ] |
809 } | 809 } |
OLD | NEW |