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

Side by Side Diff: components/BUILD.gn

Issue 2879033002: Keyboard Lock Host implementation
Patch Set: Missing change to rename CodeToUsbKeycode to CodeStringToUsbKeycode Created 3 years, 6 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 | « chrome/chrome_watcher/BUILD.gn ('k') | components/keyboard_lock/BUILD.gn » ('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 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//printing/features/features.gni") 8 import("//printing/features/features.gni")
9 import("//rlz/features/features.gni") 9 import("//rlz/features/features.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 "//components/favicon_base:unit_tests", 87 "//components/favicon_base:unit_tests",
88 "//components/flags_ui:unit_tests", 88 "//components/flags_ui:unit_tests",
89 "//components/gcm_driver:unit_tests", 89 "//components/gcm_driver:unit_tests",
90 "//components/gcm_driver/crypto:unit_tests", 90 "//components/gcm_driver/crypto:unit_tests",
91 "//components/google/core/browser:unit_tests", 91 "//components/google/core/browser:unit_tests",
92 "//components/grpc_support/test:unit_tests", 92 "//components/grpc_support/test:unit_tests",
93 "//components/history/core/browser:unit_tests", 93 "//components/history/core/browser:unit_tests",
94 "//components/history/core/common:unit_tests", 94 "//components/history/core/common:unit_tests",
95 "//components/image_fetcher/core:unit_tests", 95 "//components/image_fetcher/core:unit_tests",
96 "//components/json_schema:unit_tests", 96 "//components/json_schema:unit_tests",
97 "//components/keyboard_lock:unit_tests",
97 "//components/keyed_service/core:unit_tests", 98 "//components/keyed_service/core:unit_tests",
98 "//components/language_usage_metrics:unit_tests", 99 "//components/language_usage_metrics:unit_tests",
99 "//components/leveldb_proto:unit_tests", 100 "//components/leveldb_proto:unit_tests",
100 "//components/login:unit_tests", 101 "//components/login:unit_tests",
101 "//components/metrics:unit_tests", 102 "//components/metrics:unit_tests",
102 "//components/mime_util:unit_tests", 103 "//components/mime_util:unit_tests",
103 "//components/navigation_metrics:unit_tests", 104 "//components/navigation_metrics:unit_tests",
104 "//components/net_log:unit_tests", 105 "//components/net_log:unit_tests",
105 "//components/network_session_configurator:unit_tests", 106 "//components/network_session_configurator:unit_tests",
106 "//components/network_time:unit_tests", 107 "//components/network_time:unit_tests",
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 deps = [ 414 deps = [
414 "//base", 415 "//base",
415 "//base/test:test_support", 416 "//base/test:test_support",
416 "//components/autofill/content/browser", 417 "//components/autofill/content/browser",
417 "//components/autofill/content/renderer", 418 "//components/autofill/content/renderer",
418 "//components/autofill/core/browser", 419 "//components/autofill/core/browser",
419 "//components/content_settings/core/common", 420 "//components/content_settings/core/common",
420 "//components/dom_distiller/content/browser", 421 "//components/dom_distiller/content/browser",
421 "//components/dom_distiller/core", 422 "//components/dom_distiller/core",
422 "//components/dom_distiller/core:test_support", 423 "//components/dom_distiller/core:test_support",
424 "//components/keyboard_lock",
423 "//components/password_manager/content/browser", 425 "//components/password_manager/content/browser",
424 "//components/password_manager/content/renderer", 426 "//components/password_manager/content/renderer",
425 "//components/security_state/content", 427 "//components/security_state/content",
426 "//components/security_state/core", 428 "//components/security_state/core",
427 "//components/strings", 429 "//components/strings",
428 "//components/tracing", 430 "//components/tracing",
429 "//content/public/browser", 431 "//content/public/browser",
430 "//content/shell:content_shell_lib", 432 "//content/shell:content_shell_lib",
431 "//content/test:browsertest_support", 433 "//content/test:browsertest_support",
432 "//content/test:test_support", 434 "//content/test:test_support",
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 "//testing/perf", 508 "//testing/perf",
507 "//url", 509 "//url",
508 ] 510 ]
509 511
510 if (!is_ios) { 512 if (!is_ios) {
511 sources += [ "discardable_memory/common/discardable_shared_memory_heap_per ftest.cc" ] 513 sources += [ "discardable_memory/common/discardable_shared_memory_heap_per ftest.cc" ]
512 deps += [ "//components/discardable_memory/common" ] 514 deps += [ "//components/discardable_memory/common" ]
513 } 515 }
514 } 516 }
515 } 517 }
OLDNEW
« no previous file with comments | « chrome/chrome_watcher/BUILD.gn ('k') | components/keyboard_lock/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698