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 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
10 } | 10 } |
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 "win/scoped_ole_initializer.h", | 247 "win/scoped_ole_initializer.h", |
248 "win/shell.cc", | 248 "win/shell.cc", |
249 "win/shell.h", | 249 "win/shell.h", |
250 "win/touch_input.cc", | 250 "win/touch_input.cc", |
251 "win/touch_input.h", | 251 "win/touch_input.h", |
252 "win/window_event_target.cc", | 252 "win/window_event_target.cc", |
253 "win/window_event_target.h", | 253 "win/window_event_target.h", |
254 "window_open_disposition.cc", | 254 "window_open_disposition.cc", |
255 "window_open_disposition.h", | 255 "window_open_disposition.h", |
256 "work_area_watcher_observer.h", | 256 "work_area_watcher_observer.h", |
| 257 "x/x11_foreign_window_manager.cc", |
| 258 "x/x11_foreign_window_manager.h", |
257 "x/x11_menu_list.cc", | 259 "x/x11_menu_list.cc", |
258 "x/x11_menu_list.h", | 260 "x/x11_menu_list.h", |
259 "x/x11_util.cc", | 261 "x/x11_util.cc", |
260 "x/x11_util.h", | 262 "x/x11_util.h", |
261 "x/x11_util_internal.h", | 263 "x/x11_util_internal.h", |
262 ] | 264 ] |
263 | 265 |
264 if (is_win) { | 266 if (is_win) { |
265 sources += [ "touch/touch_device_win.cc" ] | 267 sources += [ "touch/touch_device_win.cc" ] |
266 } else if (is_android) { | 268 } else if (is_android) { |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
322 ] | 324 ] |
323 } else { | 325 } else { |
324 sources -= [ | 326 sources -= [ |
325 "cursor/cursor.cc", | 327 "cursor/cursor.cc", |
326 "cursor/cursor.h", | 328 "cursor/cursor.h", |
327 "dragdrop/drag_utils_aura.cc", | 329 "dragdrop/drag_utils_aura.cc", |
328 ] | 330 ] |
329 } | 331 } |
330 if (!use_x11) { | 332 if (!use_x11) { |
331 sources -= [ | 333 sources -= [ |
| 334 "x/x11_foreign_window_manager.cc", |
| 335 "x/x11_foreign_window_manager.h", |
332 "x/x11_menu_list.cc", | 336 "x/x11_menu_list.cc", |
333 "x/x11_menu_list.h", | 337 "x/x11_menu_list.h", |
334 "x/x11_util.cc", | 338 "x/x11_util.cc", |
335 "x/x11_util.h", | 339 "x/x11_util.h", |
336 "x/x11_util_internal.h", | 340 "x/x11_util_internal.h", |
337 ] | 341 ] |
338 } | 342 } |
339 | 343 |
340 if (!use_aura || !is_linux) { | 344 if (!use_aura || !is_linux) { |
341 sources -= [ | 345 sources -= [ |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
571 "../android/java/src/org/chromium/ui/base/LocalizationUtils.java", | 575 "../android/java/src/org/chromium/ui/base/LocalizationUtils.java", |
572 "../android/java/src/org/chromium/ui/base/ResourceBundle.java", | 576 "../android/java/src/org/chromium/ui/base/ResourceBundle.java", |
573 "../android/java/src/org/chromium/ui/base/SelectFileDialog.java", | 577 "../android/java/src/org/chromium/ui/base/SelectFileDialog.java", |
574 "../android/java/src/org/chromium/ui/base/TouchDevice.java", | 578 "../android/java/src/org/chromium/ui/base/TouchDevice.java", |
575 "../android/java/src/org/chromium/ui/base/ViewAndroid.java", | 579 "../android/java/src/org/chromium/ui/base/ViewAndroid.java", |
576 "../android/java/src/org/chromium/ui/base/WindowAndroid.java", | 580 "../android/java/src/org/chromium/ui/base/WindowAndroid.java", |
577 ] | 581 ] |
578 jni_package = "base" | 582 jni_package = "base" |
579 } | 583 } |
580 } | 584 } |
OLD | NEW |