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

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

Issue 2763103002: Move ImageDecoder to components/image_fetcher/content (Closed)
Patch Set: Rebased. Created 3 years, 8 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("//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 import("//rlz/features/features.gni") 10 import("//rlz/features/features.gni")
(...skipping 1112 matching lines...) Expand 10 before | Expand all | Expand 10 after
1123 "../apps/drive/drive_app_mapping.cc", 1123 "../apps/drive/drive_app_mapping.cc",
1124 "../apps/drive/drive_app_mapping.h", 1124 "../apps/drive/drive_app_mapping.h",
1125 "../apps/drive/drive_app_provider.cc", 1125 "../apps/drive/drive_app_provider.cc",
1126 "../apps/drive/drive_app_provider.h", 1126 "../apps/drive/drive_app_provider.h",
1127 "../apps/drive/drive_app_uninstall_sync_service.h", 1127 "../apps/drive/drive_app_uninstall_sync_service.h",
1128 "../apps/drive/drive_service_bridge.cc", 1128 "../apps/drive/drive_service_bridge.cc",
1129 "../apps/drive/drive_service_bridge.h", 1129 "../apps/drive/drive_service_bridge.h",
1130 "api/launcher_page/launcher_page_api.cc", 1130 "api/launcher_page/launcher_page_api.cc",
1131 "api/launcher_page/launcher_page_api.h", 1131 "api/launcher_page/launcher_page_api.h",
1132 ] 1132 ]
1133 deps += [ "//components/image_fetcher/content" ]
1133 } 1134 }
1134 1135
1135 if (enable_hotwording) { 1136 if (enable_hotwording) {
1136 defines += [ "ENABLE_HOTWORDING" ] 1137 defines += [ "ENABLE_HOTWORDING" ]
1137 } 1138 }
1138 1139
1139 if (enable_service_discovery) { 1140 if (enable_service_discovery) {
1140 sources += [ 1141 sources += [
1141 "api/mdns/dns_sd_delegate.cc", 1142 "api/mdns/dns_sd_delegate.cc",
1142 "api/mdns/dns_sd_delegate.h", 1143 "api/mdns/dns_sd_delegate.h",
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
1187 "api/braille_display_private/brlapi_connection.cc", 1188 "api/braille_display_private/brlapi_connection.cc",
1188 "api/braille_display_private/brlapi_connection.h", 1189 "api/braille_display_private/brlapi_connection.h",
1189 "api/braille_display_private/brlapi_keycode_map.cc", 1190 "api/braille_display_private/brlapi_keycode_map.cc",
1190 "api/braille_display_private/brlapi_keycode_map.h", 1191 "api/braille_display_private/brlapi_keycode_map.h",
1191 ] 1192 ]
1192 deps += [ "//build/linux/libbrlapi" ] 1193 deps += [ "//build/linux/libbrlapi" ]
1193 } else { 1194 } else {
1194 sources += [ "api/braille_display_private/braille_controller_stub.cc" ] 1195 sources += [ "api/braille_display_private/braille_controller_stub.cc" ]
1195 } 1196 }
1196 } 1197 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698