| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/sanitizers/sanitizers.gni") | 7 import("//build/config/sanitizers/sanitizers.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//ui/base/ui_features.gni") | 10 import("//ui/base/ui_features.gni") |
| (...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 "clipboard/clipboard_constants.cc", | 329 "clipboard/clipboard_constants.cc", |
| 330 "clipboard/clipboard_monitor.cc", | 330 "clipboard/clipboard_monitor.cc", |
| 331 "clipboard/clipboard_monitor.h", | 331 "clipboard/clipboard_monitor.h", |
| 332 "clipboard/clipboard_observer.h", | 332 "clipboard/clipboard_observer.h", |
| 333 "clipboard/custom_data_helper.cc", | 333 "clipboard/custom_data_helper.cc", |
| 334 "clipboard/custom_data_helper.h", | 334 "clipboard/custom_data_helper.h", |
| 335 "clipboard/scoped_clipboard_writer.cc", | 335 "clipboard/scoped_clipboard_writer.cc", |
| 336 "clipboard/scoped_clipboard_writer.h", | 336 "clipboard/scoped_clipboard_writer.h", |
| 337 "cursor/cursor_util.cc", | 337 "cursor/cursor_util.cc", |
| 338 "cursor/cursor_util.h", | 338 "cursor/cursor_util.h", |
| 339 "cursor/cursors_aura.cc", | |
| 340 "cursor/cursors_aura.h", | |
| 341 "cursor/image_cursors.cc", | 339 "cursor/image_cursors.cc", |
| 342 "cursor/image_cursors.h", | 340 "cursor/image_cursors.h", |
| 343 "default_theme_provider.cc", | 341 "default_theme_provider.cc", |
| 344 "default_theme_provider.h", | 342 "default_theme_provider.h", |
| 345 "dragdrop/cocoa_dnd_util.h", | 343 "dragdrop/cocoa_dnd_util.h", |
| 346 "dragdrop/cocoa_dnd_util.mm", | 344 "dragdrop/cocoa_dnd_util.mm", |
| 347 "dragdrop/file_info.cc", | 345 "dragdrop/file_info.cc", |
| 348 "dragdrop/file_info.h", | 346 "dragdrop/file_info.h", |
| 349 "idle/idle.cc", | 347 "idle/idle.cc", |
| 350 "idle/idle.h", | 348 "idle/idle.h", |
| 351 "idle/idle_android.cc", | 349 "idle/idle_android.cc", |
| 352 "idle/idle_chromeos.cc", | 350 "idle/idle_chromeos.cc", |
| 353 "idle/idle_linux.cc", | 351 "idle/idle_linux.cc", |
| 354 "idle/idle_mac.mm", | 352 "idle/idle_mac.mm", |
| 355 "idle/idle_win.cc", | 353 "idle/idle_win.cc", |
| 356 "text/bytes_formatting.cc", | 354 "text/bytes_formatting.cc", |
| 357 "text/bytes_formatting.h", | 355 "text/bytes_formatting.h", |
| 358 ] | 356 ] |
| 357 |
| 358 if (use_aura) { |
| 359 sources += [ |
| 360 "cursor/cursors_aura.cc", |
| 361 "cursor/cursors_aura.h", |
| 362 ] |
| 363 } |
| 359 } | 364 } |
| 360 | 365 |
| 361 if (is_win) { | 366 if (is_win) { |
| 362 sources += [ "touch/touch_device_win.cc" ] | 367 sources += [ "touch/touch_device_win.cc" ] |
| 363 } else if (is_android) { | 368 } else if (is_android) { |
| 364 sources += [ "touch/touch_device_android.cc" ] | 369 sources += [ "touch/touch_device_android.cc" ] |
| 365 sources -= [ "touch/touch_device_util.cc" ] | 370 sources -= [ "touch/touch_device_util.cc" ] |
| 366 } else if (is_ios) { | 371 } else if (is_ios) { |
| 367 sources += [ "touch/touch_device_ios.cc" ] | 372 sources += [ "touch/touch_device_ios.cc" ] |
| 368 } else if (is_linux) { | 373 } else if (is_linux) { |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 607 "idle/idle.cc", | 612 "idle/idle.cc", |
| 608 "idle/idle.h", | 613 "idle/idle.h", |
| 609 "idle/idle_android.cc", | 614 "idle/idle_android.cc", |
| 610 "l10n/l10n_font_util.cc", | 615 "l10n/l10n_font_util.cc", |
| 611 "models/button_menu_item_model.cc", | 616 "models/button_menu_item_model.cc", |
| 612 "models/dialog_model.cc", | 617 "models/dialog_model.cc", |
| 613 "theme_provider.cc", | 618 "theme_provider.cc", |
| 614 "touch/touch_editing_controller.cc", | 619 "touch/touch_editing_controller.cc", |
| 615 "ui_base_types.cc", | 620 "ui_base_types.cc", |
| 616 ] | 621 ] |
| 622 sources += [ |
| 623 "cursor/cursors_android.cc", |
| 624 "cursor/cursors_android.h", |
| 625 ] |
| 626 deps += [ "//third_party/WebKit/public:blink_cursor_headers" ] |
| 617 } | 627 } |
| 618 | 628 |
| 619 # Aura clipboard. | 629 # Aura clipboard. |
| 620 if (use_aura) { | 630 if (use_aura) { |
| 621 if (use_x11 && is_desktop_linux) { | 631 if (use_x11 && is_desktop_linux) { |
| 622 sources += [ | 632 sources += [ |
| 623 "clipboard/clipboard_aurax11.cc", | 633 "clipboard/clipboard_aurax11.cc", |
| 624 "clipboard/clipboard_aurax11.h", | 634 "clipboard/clipboard_aurax11.h", |
| 625 ] | 635 ] |
| 626 } else if (!is_win && !is_android) { | 636 } else if (!is_win && !is_android) { |
| (...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1009 # This source set is used by both //chrome/browser and | 1019 # This source set is used by both //chrome/browser and |
| 1010 # //chrome/installer/setup. It must have minimal dependencies for the latter | 1020 # //chrome/installer/setup. It must have minimal dependencies for the latter |
| 1011 # (e.g., no skia). | 1021 # (e.g., no skia). |
| 1012 source_set("fullscreen_win") { | 1022 source_set("fullscreen_win") { |
| 1013 sources = [ | 1023 sources = [ |
| 1014 "fullscreen_win.cc", | 1024 "fullscreen_win.cc", |
| 1015 "fullscreen_win.h", | 1025 "fullscreen_win.h", |
| 1016 ] | 1026 ] |
| 1017 } | 1027 } |
| 1018 } | 1028 } |
| OLD | NEW |