| 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("//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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 "//base:i18n", | 45 "//base:i18n", |
| 46 "//base/third_party/dynamic_annotations", | 46 "//base/third_party/dynamic_annotations", |
| 47 "//cc", | 47 "//cc", |
| 48 "//cc/surfaces", | 48 "//cc/surfaces", |
| 49 "//components/bitmap_uploader", | 49 "//components/bitmap_uploader", |
| 50 "//components/mus/gles2:lib", | 50 "//components/mus/gles2:lib", |
| 51 "//components/mus/public/cpp", | 51 "//components/mus/public/cpp", |
| 52 "//components/mus/public/interfaces", | 52 "//components/mus/public/interfaces", |
| 53 "//components/resource_provider/public/cpp", | 53 "//components/resource_provider/public/cpp", |
| 54 "//components/resource_provider/public/interfaces", | 54 "//components/resource_provider/public/interfaces", |
| 55 "//mojo/application/public/cpp", | |
| 56 "//mojo/application/public/interfaces", | |
| 57 "//mojo/converters/geometry", | 55 "//mojo/converters/geometry", |
| 58 "//mojo/converters/ime", | 56 "//mojo/converters/ime", |
| 59 "//mojo/converters/input_events", | 57 "//mojo/converters/input_events", |
| 60 "//mojo/converters/network", | 58 "//mojo/converters/network", |
| 61 "//mojo/converters/surfaces", | 59 "//mojo/converters/surfaces", |
| 62 "//mojo/platform_handle:for_component", | 60 "//mojo/platform_handle:for_component", |
| 63 "//mojo/public/c/system:for_component", | 61 "//mojo/public/c/system:for_component", |
| 64 "//mojo/public/cpp/bindings", | 62 "//mojo/public/cpp/bindings", |
| 63 "//mojo/shell/public/cpp", |
| 64 "//mojo/shell/public/interfaces", |
| 65 "//skia", | 65 "//skia", |
| 66 "//third_party/icu", | 66 "//third_party/icu", |
| 67 "//ui/aura", | 67 "//ui/aura", |
| 68 "//ui/compositor", | 68 "//ui/compositor", |
| 69 "//ui/events", | 69 "//ui/events", |
| 70 "//ui/events:events_base", | 70 "//ui/events:events_base", |
| 71 "//ui/gfx", | 71 "//ui/gfx", |
| 72 "//ui/gfx/geometry", | 72 "//ui/gfx/geometry", |
| 73 "//ui/gl", | 73 "//ui/gl", |
| 74 "//ui/mojo/ime:interfaces_cpp_sources", | 74 "//ui/mojo/ime:interfaces_cpp_sources", |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 } | 122 } |
| 123 | 123 |
| 124 group("for_component") { | 124 group("for_component") { |
| 125 public_deps = [ | 125 public_deps = [ |
| 126 ":mus", | 126 ":mus", |
| 127 ] | 127 ] |
| 128 deps = [ | 128 deps = [ |
| 129 "//mojo/gles2", | 129 "//mojo/gles2", |
| 130 ] | 130 ] |
| 131 } | 131 } |
| OLD | NEW |