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

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

Issue 2379573008: Add SetImageData api to chrome.clipboard. (Closed)
Patch Set: Address code review comments and add test cases. Created 4 years 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("//chrome/common/features.gni") 7 import("//chrome/common/features.gni")
8 import("//extensions/features/features.gni") 8 import("//extensions/features/features.gni")
9 import("//media/media_options.gni") 9 import("//media/media_options.gni")
10 10
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 "chrome_kiosk_delegate.h", 496 "chrome_kiosk_delegate.h",
497 "chrome_kiosk_delegate_chromeos.cc", 497 "chrome_kiosk_delegate_chromeos.cc",
498 "chrome_mojo_service_registration.cc", 498 "chrome_mojo_service_registration.cc",
499 "chrome_mojo_service_registration.h", 499 "chrome_mojo_service_registration.h",
500 "chrome_process_manager_delegate.cc", 500 "chrome_process_manager_delegate.cc",
501 "chrome_process_manager_delegate.h", 501 "chrome_process_manager_delegate.h",
502 "chrome_requirements_checker.cc", 502 "chrome_requirements_checker.cc",
503 "chrome_requirements_checker.h", 503 "chrome_requirements_checker.h",
504 "chrome_url_request_util.cc", 504 "chrome_url_request_util.cc",
505 "chrome_url_request_util.h", 505 "chrome_url_request_util.h",
506 "clipboard_extension_helper.cc",
507 "clipboard_extension_helper.h",
506 "component_extensions_whitelist/whitelist.cc", 508 "component_extensions_whitelist/whitelist.cc",
507 "component_extensions_whitelist/whitelist.h", 509 "component_extensions_whitelist/whitelist.h",
508 "component_loader.cc", 510 "component_loader.cc",
509 "component_loader.h", 511 "component_loader.h",
510 "component_migration_helper.cc", 512 "component_migration_helper.cc",
511 "component_migration_helper.h", 513 "component_migration_helper.h",
512 "context_menu_matcher.cc", 514 "context_menu_matcher.cc",
513 "context_menu_matcher.h", 515 "context_menu_matcher.h",
514 "convert_user_script.cc", 516 "convert_user_script.cc",
515 "convert_user_script.h", 517 "convert_user_script.h",
(...skipping 669 matching lines...) Expand 10 before | Expand all | Expand 10 after
1185 "api/braille_display_private/brlapi_connection.cc", 1187 "api/braille_display_private/brlapi_connection.cc",
1186 "api/braille_display_private/brlapi_connection.h", 1188 "api/braille_display_private/brlapi_connection.h",
1187 "api/braille_display_private/brlapi_keycode_map.cc", 1189 "api/braille_display_private/brlapi_keycode_map.cc",
1188 "api/braille_display_private/brlapi_keycode_map.h", 1190 "api/braille_display_private/brlapi_keycode_map.h",
1189 ] 1191 ]
1190 deps += [ "//build/linux/libbrlapi" ] 1192 deps += [ "//build/linux/libbrlapi" ]
1191 } else { 1193 } else {
1192 sources += [ "api/braille_display_private/braille_controller_stub.cc" ] 1194 sources += [ "api/braille_display_private/braille_controller_stub.cc" ]
1193 } 1195 }
1194 } 1196 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698