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

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

Issue 1403293003: Introduce AndroidFocusRules and NativeWidgetAndroid (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: reviews 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("//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 8
9 gypi_values = exec_script("//build/gypi_to_gn.py", 9 gypi_values = exec_script("//build/gypi_to_gn.py",
10 [ rebase_path("views.gyp") ], 10 [ rebase_path("views.gyp") ],
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 configs += [ "//ui/accessibility:atk" ] 120 configs += [ "//ui/accessibility:atk" ]
121 } else if (is_win) { 121 } else if (is_win) {
122 sources += gypi_values.views_desktop_aura_win_sources 122 sources += gypi_values.views_desktop_aura_win_sources
123 } else if (use_ozone) { 123 } else if (use_ozone) {
124 sources += gypi_values.views_desktop_aura_ozone_sources 124 sources += gypi_values.views_desktop_aura_ozone_sources
125 } 125 }
126 if (is_linux) { 126 if (is_linux) {
127 sources += gypi_values.views_desktop_aura_linux_sources 127 sources += gypi_values.views_desktop_aura_linux_sources
128 } 128 }
129 } 129 }
130 if (is_android) {
131 sources += gypi_values.views_desktop_android_sources
132 }
130 } 133 }
131 134
132 if (is_mac) { 135 if (is_mac) {
133 deps += [ "//ui/accelerated_widget_mac" ] 136 deps += [ "//ui/accelerated_widget_mac" ]
134 libs = [ 137 libs = [
135 # Required by bridged_native_widget.mm. 138 # Required by bridged_native_widget.mm.
136 "QuartzCore.framework", 139 "QuartzCore.framework",
137 ] 140 ]
138 } 141 }
139 } 142 }
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 "//skia", 298 "//skia",
296 "//testing/gtest", 299 "//testing/gtest",
297 "//ui/base:test_support", 300 "//ui/base:test_support",
298 "//ui/compositor", 301 "//ui/compositor",
299 "//ui/resources", 302 "//ui/resources",
300 "//ui/resources:ui_test_pak", 303 "//ui/resources:ui_test_pak",
301 "//ui/strings", 304 "//ui/strings",
302 ] 305 ]
303 } 306 }
304 } 307 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698