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

Side by Side Diff: chrome/browser/chromeos/BUILD.gn

Issue 2724913002: Move chromeos::EventRewriter to //ui/chromeos/events (Closed)
Patch Set: Fix a typo Created 3 years, 9 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
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("//extensions/features/features.gni") 7 import("//extensions/features/features.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//printing/features/features.gni") 9 import("//printing/features/features.gni")
10 import("//third_party/protobuf/proto_library.gni") 10 import("//third_party/protobuf/proto_library.gni")
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 "//third_party/protobuf:protoc($host_toolchain)", 112 "//third_party/protobuf:protoc($host_toolchain)",
113 "//third_party/re2", 113 "//third_party/re2",
114 "//third_party/webrtc_overrides", 114 "//third_party/webrtc_overrides",
115 "//third_party/zlib", 115 "//third_party/zlib",
116 "//ui/app_list", 116 "//ui/app_list",
117 "//ui/app_list/presenter:mojom", 117 "//ui/app_list/presenter:mojom",
118 "//ui/arc", 118 "//ui/arc",
119 "//ui/aura", 119 "//ui/aura",
120 "//ui/base", 120 "//ui/base",
121 "//ui/chromeos", 121 "//ui/chromeos",
122 "//ui/chromeos/events",
122 "//ui/compositor", 123 "//ui/compositor",
123 "//ui/display", 124 "//ui/display",
124 "//ui/events:dom_keycode_converter", 125 "//ui/events:dom_keycode_converter",
125 "//ui/events/devices", 126 "//ui/events/devices",
126 "//ui/events/platform", 127 "//ui/events/platform",
127 "//ui/file_manager", 128 "//ui/file_manager",
128 "//ui/keyboard:mojom", 129 "//ui/keyboard:mojom",
129 "//ui/message_center", 130 "//ui/message_center",
130 "//ui/surface", 131 "//ui/surface",
131 "//ui/views", 132 "//ui/views",
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 "drive/fileapi/webkit_file_stream_reader_impl.cc", 422 "drive/fileapi/webkit_file_stream_reader_impl.cc",
422 "drive/fileapi/webkit_file_stream_reader_impl.h", 423 "drive/fileapi/webkit_file_stream_reader_impl.h",
423 "drive/fileapi/webkit_file_stream_writer_impl.cc", 424 "drive/fileapi/webkit_file_stream_writer_impl.cc",
424 "drive/fileapi/webkit_file_stream_writer_impl.h", 425 "drive/fileapi/webkit_file_stream_writer_impl.h",
425 "drive/write_on_cache_file.cc", 426 "drive/write_on_cache_file.cc",
426 "drive/write_on_cache_file.h", 427 "drive/write_on_cache_file.h",
427 "enrollment_dialog_view.cc", 428 "enrollment_dialog_view.cc",
428 "enrollment_dialog_view.h", 429 "enrollment_dialog_view.h",
429 "eol_notification.cc", 430 "eol_notification.cc",
430 "eol_notification.h", 431 "eol_notification.h",
431 "events/event_rewriter.cc",
432 "events/event_rewriter.h",
433 "events/event_rewriter_controller.cc", 432 "events/event_rewriter_controller.cc",
434 "events/event_rewriter_controller.h", 433 "events/event_rewriter_controller.h",
434 "events/event_rewriter_delegate_impl.cc",
435 "events/event_rewriter_delegate_impl.h",
435 "events/keyboard_driven_event_rewriter.cc", 436 "events/keyboard_driven_event_rewriter.cc",
436 "events/keyboard_driven_event_rewriter.h", 437 "events/keyboard_driven_event_rewriter.h",
437 "events/system_key_event_listener.cc", 438 "events/system_key_event_listener.cc",
438 "events/system_key_event_listener.h", 439 "events/system_key_event_listener.h",
439 "events/xinput_hierarchy_changed_event_listener.cc", 440 "events/xinput_hierarchy_changed_event_listener.cc",
440 "events/xinput_hierarchy_changed_event_listener.h", 441 "events/xinput_hierarchy_changed_event_listener.h",
441 "extensions/default_app_order.cc", 442 "extensions/default_app_order.cc",
442 "extensions/default_app_order.h", 443 "extensions/default_app_order.h",
443 "extensions/device_local_account_external_policy_loader.cc", 444 "extensions/device_local_account_external_policy_loader.cc",
444 "extensions/device_local_account_external_policy_loader.h", 445 "extensions/device_local_account_external_policy_loader.h",
(...skipping 1351 matching lines...) Expand 10 before | Expand all | Expand 10 after
1796 "policy/proto/chrome_device_policy.proto", 1797 "policy/proto/chrome_device_policy.proto",
1797 "policy/proto/install_attributes.proto", 1798 "policy/proto/install_attributes.proto",
1798 ] 1799 ]
1799 } 1800 }
1800 1801
1801 proto_library("attestation_proto") { 1802 proto_library("attestation_proto") {
1802 sources = [ 1803 sources = [
1803 "attestation/attestation_key_payload.proto", 1804 "attestation/attestation_key_payload.proto",
1804 ] 1805 ]
1805 } 1806 }
OLDNEW
« no previous file with comments | « ash/sticky_keys/sticky_keys_overlay_unittest.cc ('k') | chrome/browser/chromeos/chrome_browser_main_chromeos.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698