| 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 visibility = "//third_party/WebKit/*" |
| 10 |
| 9 web_gypi = exec_script( | 11 web_gypi = exec_script( |
| 10 "//build/gypi_to_gn.py", | 12 "//build/gypi_to_gn.py", |
| 11 [ rebase_path("web.gypi") ], | 13 [ rebase_path("web.gypi") ], |
| 12 "scope", | 14 "scope", |
| 13 [ "web.gypi" ]) | 15 [ "web.gypi" ]) |
| 14 | 16 |
| 15 component("web") { | 17 component("web") { |
| 16 output_name = "blink_web" | 18 output_name = "blink_web" |
| 17 | 19 |
| 18 deps = [ | 20 deps = [ |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 make_file_arrays("calendar_picker") { | 64 make_file_arrays("calendar_picker") { |
| 63 resources = [ | 65 resources = [ |
| 64 "resources/calendarPicker.css", | 66 "resources/calendarPicker.css", |
| 65 "resources/calendarPicker.js", | 67 "resources/calendarPicker.js", |
| 66 "resources/pickerButton.css", | 68 "resources/pickerButton.css", |
| 67 "resources/suggestionPicker.css", | 69 "resources/suggestionPicker.css", |
| 68 "resources/suggestionPicker.js", | 70 "resources/suggestionPicker.js", |
| 69 ] | 71 ] |
| 70 filename = "CalendarPicker" | 72 filename = "CalendarPicker" |
| 71 } | 73 } |
| OLD | NEW |