| 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/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//third_party/WebKit/Source/config.gni") | 6 import("//third_party/WebKit/Source/config.gni") |
| 7 import("//third_party/WebKit/Source/build/make_file_arrays.gni") | 7 import("//third_party/WebKit/Source/build/make_file_arrays.gni") |
| 8 | 8 |
| 9 web_gypi = exec_script( | 9 web_gypi = exec_script( |
| 10 "//build/gypi_to_gn.py", | 10 "//build/gypi_to_gn.py", |
| 11 [ rebase_path("web.gypi") ], | 11 [ rebase_path("web.gypi") ], |
| 12 "scope", | 12 "scope", |
| 13 [ "web.gypi" ]) | 13 [ "web.gypi" ]) |
| 14 | 14 |
| 15 component("web") { | 15 component("web") { |
| 16 output_name = "blink_web" | 16 output_name = "blink_web" |
| 17 | 17 |
| 18 deps = [ | 18 deps = [ |
| 19 ":calendar_picker", | 19 ":calendar_picker", |
| 20 ":picker_common", | 20 ":picker_common", |
| 21 ":color_suggestion_picker", | 21 ":color_suggestion_picker", |
| 22 "//third_party/WebKit/Source/core", | 22 "//third_party/WebKit/Source/core", |
| 23 "//third_party/WebKit/Source/modules", |
| 23 "//third_party/WebKit/Source/platform", | 24 "//third_party/WebKit/Source/platform", |
| 24 #"//third_party/WebKit/Source/modules", | |
| 25 "//skia", | 25 "//skia", |
| 26 "//third_party/icu", | 26 "//third_party/icu", |
| 27 "//v8", | 27 "//v8", |
| 28 "//third_party/angle:translator", | 28 "//third_party/angle:translator", |
| 29 ] | 29 ] |
| 30 | 30 |
| 31 include_dirs = [ | 31 include_dirs = [ |
| 32 "//third_party/skia/include/utils", | 32 "//third_party/skia/include/utils", |
| 33 ] | 33 ] |
| 34 | 34 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 62 make_file_arrays("calendar_picker") { | 62 make_file_arrays("calendar_picker") { |
| 63 resources = [ | 63 resources = [ |
| 64 "resources/calendarPicker.css", | 64 "resources/calendarPicker.css", |
| 65 "resources/calendarPicker.js", | 65 "resources/calendarPicker.js", |
| 66 "resources/pickerButton.css", | 66 "resources/pickerButton.css", |
| 67 "resources/suggestionPicker.css", | 67 "resources/suggestionPicker.css", |
| 68 "resources/suggestionPicker.js", | 68 "resources/suggestionPicker.js", |
| 69 ] | 69 ] |
| 70 filename = "CalendarPicker" | 70 filename = "CalendarPicker" |
| 71 } | 71 } |
| OLD | NEW |