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

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

Issue 1226153004: ATK accessibility support for web content on Aura Linux. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix chromecast build by changing the ifdefs back to what they were and then adding another exclusio… Created 5 years, 5 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 | « ui/accessibility/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 sources += gypi_values.views_aura_sources 106 sources += gypi_values.views_aura_sources
107 deps += [ 107 deps += [
108 "//ui/aura", 108 "//ui/aura",
109 "//ui/touch_selection", 109 "//ui/touch_selection",
110 "//ui/wm", 110 "//ui/wm",
111 ] 111 ]
112 if (!is_chromeos) { 112 if (!is_chromeos) {
113 sources += gypi_values.views_desktop_aura_sources 113 sources += gypi_values.views_desktop_aura_sources
114 if (use_x11) { 114 if (use_x11) {
115 sources += gypi_values.views_desktop_aura_x11_sources 115 sources += gypi_values.views_desktop_aura_x11_sources
116 configs += [ "//ui/accessibility:atk" ] 116 configs += [ "//build/config/linux:atk" ]
117 } else if (is_win) { 117 } else if (is_win) {
118 sources += gypi_values.views_desktop_aura_win_sources 118 sources += gypi_values.views_desktop_aura_win_sources
119 } else if (use_ozone) { 119 } else if (use_ozone) {
120 sources += gypi_values.views_desktop_aura_ozone_sources 120 sources += gypi_values.views_desktop_aura_ozone_sources
121 } 121 }
122 if (is_linux) { 122 if (is_linux) {
123 sources += gypi_values.views_desktop_aura_linux_sources 123 sources += gypi_values.views_desktop_aura_linux_sources
124 } 124 }
125 } 125 }
126 } 126 }
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 "//skia", 288 "//skia",
289 "//testing/gtest", 289 "//testing/gtest",
290 "//ui/base:test_support", 290 "//ui/base:test_support",
291 "//ui/compositor", 291 "//ui/compositor",
292 "//ui/resources", 292 "//ui/resources",
293 "//ui/resources:ui_test_pak", 293 "//ui/resources:ui_test_pak",
294 "//ui/strings", 294 "//ui/strings",
295 ] 295 ]
296 } 296 }
297 } 297 }
OLDNEW
« no previous file with comments | « ui/accessibility/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698