Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(101)

Side by Side Diff: Source/web/BUILD.gn

Issue 343503003: Finish modules build in GN. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add config Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/modules/modules.gyp ('k') | public/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « Source/modules/modules.gyp ('k') | public/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698