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

Side by Side Diff: ui/views/mus/BUILD.gn

Issue 1439973004: [PoC] Reformat all BUILD.gn and *.gni files with new gn. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-sort-deps
Patch Set: Synchronize with new version of gn patch Created 5 years, 1 month 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
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("//tools/grit/repack.gni") 5 import("//tools/grit/repack.gni")
6 6
7 component("mus") { 7 component("mus") {
8 output_name = "ui_views_mus_lib" 8 output_name = "ui_views_mus_lib"
9 9
10 sources = [ 10 sources = [
(...skipping 29 matching lines...) Expand all
40 "//base", 40 "//base",
41 "//base:i18n", 41 "//base:i18n",
42 "//base/third_party/dynamic_annotations", 42 "//base/third_party/dynamic_annotations",
43 "//cc", 43 "//cc",
44 "//cc/surfaces", 44 "//cc/surfaces",
45 "//components/mus/gles2:lib", 45 "//components/mus/gles2:lib",
46 "//components/mus/public/cpp", 46 "//components/mus/public/cpp",
47 "//components/mus/public/interfaces", 47 "//components/mus/public/interfaces",
48 "//components/resource_provider/public/cpp", 48 "//components/resource_provider/public/cpp",
49 "//components/resource_provider/public/interfaces", 49 "//components/resource_provider/public/interfaces",
50 "//skia",
51 "//mojo/application/public/cpp", 50 "//mojo/application/public/cpp",
52 "//mojo/application/public/interfaces", 51 "//mojo/application/public/interfaces",
53 "//mojo/converters/geometry", 52 "//mojo/converters/geometry",
54 "//mojo/converters/ime", 53 "//mojo/converters/ime",
55 "//mojo/converters/input_events", 54 "//mojo/converters/input_events",
56 "//mojo/converters/network", 55 "//mojo/converters/network",
57 "//mojo/converters/surfaces", 56 "//mojo/converters/surfaces",
58 "//mojo/platform_handle:for_component", 57 "//mojo/platform_handle:for_component",
59 "//mojo/public/c/system:for_component", 58 "//mojo/public/c/system:for_component",
60 "//mojo/public/cpp/bindings", 59 "//mojo/public/cpp/bindings",
60 "//skia",
61 "//third_party/icu", 61 "//third_party/icu",
62 "//ui/aura", 62 "//ui/aura",
63 "//ui/compositor", 63 "//ui/compositor",
64 "//ui/events", 64 "//ui/events",
65 "//ui/events:events_base", 65 "//ui/events:events_base",
66 "//ui/gfx", 66 "//ui/gfx",
67 "//ui/gfx/geometry", 67 "//ui/gfx/geometry",
68 "//ui/gl", 68 "//ui/gl",
69 "//ui/mojo/ime:interfaces_cpp_sources", 69 "//ui/mojo/ime:interfaces_cpp_sources",
70 "//ui/mojo/init", 70 "//ui/mojo/init",
(...skipping 14 matching lines...) Expand all
85 85
86 repack("resources") { 86 repack("resources") {
87 sources = [ 87 sources = [
88 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", 88 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak",
89 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", 89 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak",
90 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", 90 "$root_gen_dir/ui/strings/ui_strings_en-US.pak",
91 "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak", 91 "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak",
92 ] 92 ]
93 output = "$root_out_dir/views_mus_resources.pak" 93 output = "$root_out_dir/views_mus_resources.pak"
94 deps = [ 94 deps = [
95 "//ui/resources",
95 "//ui/strings", 96 "//ui/strings",
96 "//ui/resources",
97 "//ui/views/resources", 97 "//ui/views/resources",
98 ] 98 ]
99 } 99 }
100 100
101 group("for_mojo_application") { 101 group("for_mojo_application") {
102 public_deps = [ 102 public_deps = [
103 ":mus", 103 ":mus",
104 ] 104 ]
105 } 105 }
106 106
107 group("for_shared_library") { 107 group("for_shared_library") {
108 public_deps = [ 108 public_deps = [
109 ":mus", 109 ":mus",
110 ] 110 ]
111 if (!is_component_build) { 111 if (!is_component_build) {
112 deps = [ 112 deps = [
113 "//mojo/gles2", 113 "//mojo/gles2",
114 ] 114 ]
115 } 115 }
116 } 116 }
117 117
118 group("for_component") { 118 group("for_component") {
119 public_deps = [ 119 public_deps = [
120 ":mus", 120 ":mus",
121 ] 121 ]
122 deps = [ 122 deps = [
123 "//mojo/gles2", 123 "//mojo/gles2",
124 ] 124 ]
125 } 125 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698