| 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 30 matching lines...) Expand all Loading... |
| 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", | |
| 52 "//base/third_party/dynamic_annotations", | 51 "//base/third_party/dynamic_annotations", |
| 53 "//skia", | 52 "//skia", |
| 54 "//third_party/icu", | 53 "//third_party/icu", |
| 55 "//ui/base", | 54 "//ui/base", |
| 56 "//ui/gfx", | 55 "//ui/gfx", |
| 57 ] | 56 ] |
| 58 } | 57 } |
| OLD | NEW |