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

Side by Side Diff: chrome/browser/ui/libgtk2ui/BUILD.gn

Issue 1324913002: Fix out of order key events in Chrome on Linux. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix spelling error Created 4 years, 4 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 | « no previous file | chrome/browser/ui/libgtk2ui/gtk2_event_loop.cc » ('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 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 assert(is_linux, "This file should only be referenced on Linux") 5 assert(is_linux, "This file should only be referenced on Linux")
6 6
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 9
10 # gn orders flags on a target before flags from configs. The default config 10 # gn orders flags on a target before flags from configs. The default config
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 "//components/resources", 101 "//components/resources",
102 "//content/public/browser", 102 "//content/public/browser",
103 "//printing", 103 "//printing",
104 "//skia", 104 "//skia",
105 "//ui/aura", 105 "//ui/aura",
106 "//ui/base", 106 "//ui/base",
107 "//ui/base/ime", 107 "//ui/base/ime",
108 "//ui/display", 108 "//ui/display",
109 "//ui/events", 109 "//ui/events",
110 "//ui/events:events_base", 110 "//ui/events:events_base",
111 "//ui/events/platform/x11",
111 "//ui/gfx", 112 "//ui/gfx",
112 "//ui/gfx/geometry", 113 "//ui/gfx/geometry",
113 "//ui/gfx/x", 114 "//ui/gfx/x",
114 "//ui/native_theme", 115 "//ui/native_theme",
115 "//ui/resources", 116 "//ui/resources",
116 "//ui/shell_dialogs", 117 "//ui/shell_dialogs",
117 "//ui/strings", 118 "//ui/strings",
118 "//ui/views", 119 "//ui/views",
119 ] 120 ]
120 121
121 if (use_gtk3) { 122 if (use_gtk3) {
122 deps += [ 123 deps += [
123 "//build/config/linux/gtk3", 124 "//build/config/linux/gtk3",
124 "//build/config/linux/gtk3:gtkprint3", 125 "//build/config/linux/gtk3:gtkprint3",
125 ] 126 ]
126 } else { 127 } else {
127 deps += [ 128 deps += [
128 "//build/config/linux/gtk2", 129 "//build/config/linux/gtk2",
129 "//build/config/linux/gtk2:gtkprint2", 130 "//build/config/linux/gtk2:gtkprint2",
130 ] 131 ]
131 } 132 }
132 } 133 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/libgtk2ui/gtk2_event_loop.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698