| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 ] | 83 ] |
| 84 srcjar_deps = [ ":blink_headers_java_enums_srcjar" ] | 84 srcjar_deps = [ ":blink_headers_java_enums_srcjar" ] |
| 85 } | 85 } |
| 86 } | 86 } |
| 87 | 87 |
| 88 # Depend on this target to use public blink API headers for things like enums | 88 # Depend on this target to use public blink API headers for things like enums |
| 89 # and public structures without actually linking against any Blink libraries. | 89 # and public structures without actually linking against any Blink libraries. |
| 90 source_set("blink_headers") { | 90 source_set("blink_headers") { |
| 91 sources = [ | 91 sources = [ |
| 92 "platform/BlameContext.h", | 92 "platform/BlameContext.h", |
| 93 "platform/Connector.h", | |
| 94 "platform/FilePathConversion.h", | 93 "platform/FilePathConversion.h", |
| 95 "platform/InterfaceProvider.h", | 94 "platform/InterfaceProvider.h", |
| 96 "platform/InterfaceRegistry.h", | 95 "platform/InterfaceRegistry.h", |
| 97 "platform/Platform.h", | 96 "platform/Platform.h", |
| 98 "platform/PointerProperties.h", | 97 "platform/PointerProperties.h", |
| 99 "platform/ShapeProperties.h", | 98 "platform/ShapeProperties.h", |
| 100 "platform/URLConversion.h", | 99 "platform/URLConversion.h", |
| 101 "platform/UserMetricsAction.h", | 100 "platform/UserMetricsAction.h", |
| 102 "platform/WebAddressSpace.h", | 101 "platform/WebAddressSpace.h", |
| 103 "platform/WebApiKeyValidator.h", | 102 "platform/WebApiKeyValidator.h", |
| (...skipping 696 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 800 source_set("shared_typemap_traits") { | 799 source_set("shared_typemap_traits") { |
| 801 visibility = [ ":*" ] | 800 visibility = [ ":*" ] |
| 802 sources = [ | 801 sources = [ |
| 803 "web/ConsoleMessageStructTraits.cpp", | 802 "web/ConsoleMessageStructTraits.cpp", |
| 804 "web/ConsoleMessageStructTraits.h", | 803 "web/ConsoleMessageStructTraits.h", |
| 805 ] | 804 ] |
| 806 deps = [ | 805 deps = [ |
| 807 ":mojo_bindings_shared__generator", | 806 ":mojo_bindings_shared__generator", |
| 808 ] | 807 ] |
| 809 } | 808 } |
| OLD | NEW |