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 | 6 |
7 assert(use_aura) | 7 assert(use_aura) |
8 | 8 |
9 # GYP version: mojo/mojo.gyp:mojo_views_support | 9 # GYP version: mojo/mojo.gyp:mojo_views_support |
10 source_set("views") { | 10 source_set("views") { |
(...skipping 17 matching lines...) Expand all Loading... |
28 "//ui/views", | 28 "//ui/views", |
29 "//ui/wm", | 29 "//ui/wm", |
30 "//mojo/aura", | 30 "//mojo/aura", |
31 ] | 31 ] |
32 } | 32 } |
33 | 33 |
34 # GYP version: mojo/mojo.gyp:mojo_views_support_internal | 34 # GYP version: mojo/mojo.gyp:mojo_views_support_internal |
35 component("views_internal") { | 35 component("views_internal") { |
36 output_name = "mojo_views_support_internal" | 36 output_name = "mojo_views_support_internal" |
37 | 37 |
38 visibility = ":views" | 38 visibility = [ ":views" ] |
39 | 39 |
40 sources = [ | 40 sources = [ |
41 "mojo_views_export.h", | 41 "mojo_views_export.h", |
42 "views_init_internal.cc", | 42 "views_init_internal.cc", |
43 "views_init_internal.h", | 43 "views_init_internal.h", |
44 ] | 44 ] |
45 | 45 |
46 defines = [ "MOJO_VIEWS_IMPLEMENTATION" ] | 46 defines = [ "MOJO_VIEWS_IMPLEMENTATION" ] |
47 | 47 |
48 deps = [ | 48 deps = [ |
49 "//base", | 49 "//base", |
50 "//base:i18n", | 50 "//base:i18n", |
51 "//base:base_static", | 51 "//base:base_static", |
52 "//base/third_party/dynamic_annotations", | 52 "//base/third_party/dynamic_annotations", |
53 "//skia", | 53 "//skia", |
54 "//third_party/icu", | 54 "//third_party/icu", |
55 "//ui/base", | 55 "//ui/base", |
56 "//ui/gfx", | 56 "//ui/gfx", |
57 ] | 57 ] |
58 } | 58 } |
OLD | NEW |