| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 "//third_party/android_tools:android_support_annotations_java", | 94 "//third_party/android_tools:android_support_annotations_java", |
| 95 ] | 95 ] |
| 96 srcjar_deps = [ ":blink_headers_java_enums_srcjar" ] | 96 srcjar_deps = [ ":blink_headers_java_enums_srcjar" ] |
| 97 } | 97 } |
| 98 } | 98 } |
| 99 | 99 |
| 100 # Depend on this target to use public blink API headers for things like enums | 100 # Depend on this target to use public blink API headers for things like enums |
| 101 # and public structures without actually linking against any Blink libraries. | 101 # and public structures without actually linking against any Blink libraries. |
| 102 source_set("blink_headers") { | 102 source_set("blink_headers") { |
| 103 sources = [ | 103 sources = [ |
| 104 "platform/Connector.h", |
| 104 "platform/FilePathConversion.h", | 105 "platform/FilePathConversion.h", |
| 105 "platform/InterfaceProvider.h", | 106 "platform/InterfaceProvider.h", |
| 106 "platform/Platform.h", | 107 "platform/Platform.h", |
| 107 "platform/URLConversion.h", | 108 "platform/URLConversion.h", |
| 108 "platform/UserMetricsAction.h", | 109 "platform/UserMetricsAction.h", |
| 109 "platform/WebAddressSpace.h", | 110 "platform/WebAddressSpace.h", |
| 110 "platform/WebApiKeyValidator.h", | 111 "platform/WebApiKeyValidator.h", |
| 111 "platform/WebApplicationCacheHost.h", | 112 "platform/WebApplicationCacheHost.h", |
| 112 "platform/WebApplicationCacheHostClient.h", | 113 "platform/WebApplicationCacheHostClient.h", |
| 113 "platform/WebAudioBus.h", | 114 "platform/WebAudioBus.h", |
| (...skipping 636 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 750 source_set("shared_typemap_traits") { | 751 source_set("shared_typemap_traits") { |
| 751 visibility = [ ":*" ] | 752 visibility = [ ":*" ] |
| 752 sources = [ | 753 sources = [ |
| 753 "web/ConsoleMessageStructTraits.cpp", | 754 "web/ConsoleMessageStructTraits.cpp", |
| 754 "web/WindowFeaturesStructTraits.cpp", | 755 "web/WindowFeaturesStructTraits.cpp", |
| 755 ] | 756 ] |
| 756 deps = [ | 757 deps = [ |
| 757 ":mojo_bindings_shared__generator", | 758 ":mojo_bindings_shared__generator", |
| 758 ] | 759 ] |
| 759 } | 760 } |
| OLD | NEW |