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

Side by Side Diff: ash/wm/common/BUILD.gn

Issue 2012343002: Converts overview to use common ash types (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: feedback Created 4 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
« no previous file with comments | « ash/wm/aura/wm_window_aura.cc ('k') | ash/wm/common/ash_wm_common.gyp » ('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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 import("//ui/base/ui_features.gni") 8 import("//ui/base/ui_features.gni")
9 9
10 assert(use_aura) 10 assert(use_aura)
11 assert(enable_hidpi) 11 assert(enable_hidpi)
12 12
13 # This target contains window management code used by both mash and ash. It 13 # This target contains window management code used by both mash and ash. It
14 # should not use aura::Window, but may use parts of aura client code that don't 14 # should not use aura::Window, but may use parts of aura client code that don't
15 # depend upon aura::Window directly or indirectly. 15 # depend upon aura::Window directly or indirectly.
16 component("ash_wm_common") { 16 component("ash_wm_common") {
17 sources = [ 17 sources = [
18 "always_on_top_controller.cc", 18 "always_on_top_controller.cc",
19 "always_on_top_controller.h", 19 "always_on_top_controller.h",
20 "ash_wm_common_export.h",
20 "background_animator.cc", 21 "background_animator.cc",
21 "background_animator.h", 22 "background_animator.h",
22 "container_finder.cc", 23 "container_finder.cc",
23 "container_finder.h", 24 "container_finder.h",
24 "default_state.cc", 25 "default_state.cc",
25 "default_state.h", 26 "default_state.h",
26 "default_window_resizer.cc", 27 "default_window_resizer.cc",
27 "default_window_resizer.h", 28 "default_window_resizer.h",
28 "dock/docked_window_layout_manager.cc", 29 "dock/docked_window_layout_manager.cc",
29 "dock/docked_window_layout_manager.h", 30 "dock/docked_window_layout_manager.h",
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 "//ui/keyboard", 131 "//ui/keyboard",
131 "//ui/views", 132 "//ui/views",
132 "//ui/wm", 133 "//ui/wm",
133 ] 134 ]
134 135
135 if (is_win) { 136 if (is_win) {
136 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 137 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
137 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 138 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
138 } 139 }
139 } 140 }
OLDNEW
« no previous file with comments | « ash/wm/aura/wm_window_aura.cc ('k') | ash/wm/common/ash_wm_common.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698