| Index: Source/web/BUILD.gn
|
| diff --git a/Source/web/BUILD.gn b/Source/web/BUILD.gn
|
| index db1211c36ba3bd6e68208413689f8341407dc5a5..70c966f41c3760907ddd06e85eaafb55cab6785e 100644
|
| --- a/Source/web/BUILD.gn
|
| +++ b/Source/web/BUILD.gn
|
| @@ -4,7 +4,6 @@
|
|
|
| import("//build/config/ui.gni")
|
| import("//third_party/WebKit/Source/bindings/bindings.gni")
|
| -import("//third_party/WebKit/Source/build/make_file_arrays.gni")
|
| import("//third_party/WebKit/Source/config.gni")
|
| import("//third_party/WebKit/Source/core/core.gni")
|
| import("//third_party/WebKit/Source/modules/modules.gni")
|
| @@ -22,9 +21,6 @@ component("web") {
|
| output_name = "blink_web"
|
|
|
| deps = [
|
| - ":calendar_picker",
|
| - ":picker_common",
|
| - ":color_suggestion_picker",
|
| "//third_party/WebKit/Source/core",
|
| "//third_party/WebKit/Source/modules",
|
| "//third_party/WebKit/Source/platform",
|
| @@ -109,30 +105,3 @@ test("webkit_unit_tests") {
|
| }
|
| }
|
| }
|
| -
|
| -make_file_arrays("picker_common") {
|
| - resources = [
|
| - "resources/pickerCommon.css",
|
| - "resources/pickerCommon.js",
|
| - ]
|
| - filename = "web/PickerCommon"
|
| -}
|
| -
|
| -make_file_arrays("color_suggestion_picker") {
|
| - resources = [
|
| - "resources/colorSuggestionPicker.css",
|
| - "resources/colorSuggestionPicker.js",
|
| - ]
|
| - filename = "web/ColorSuggestionPicker"
|
| -}
|
| -
|
| -make_file_arrays("calendar_picker") {
|
| - resources = [
|
| - "resources/calendarPicker.css",
|
| - "resources/calendarPicker.js",
|
| - "resources/pickerButton.css",
|
| - "resources/suggestionPicker.css",
|
| - "resources/suggestionPicker.js",
|
| - ]
|
| - filename = "web/CalendarPicker"
|
| -}
|
|
|