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

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

Issue 797183005: Add a mimeHandler extension API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@streams-lifetime
Patch Set: rebase Created 5 years, 11 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/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 7
8 # GYP version: extensions/extensions.gyp:extensions_browser 8 # GYP version: extensions/extensions.gyp:extensions_browser
9 source_set("browser") { 9 source_set("browser") {
10 sources = [] 10 sources = []
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 "api/hid/hid_connection_resource.cc", 153 "api/hid/hid_connection_resource.cc",
154 "api/hid/hid_connection_resource.h", 154 "api/hid/hid_connection_resource.h",
155 "api/hid/hid_device_manager.cc", 155 "api/hid/hid_device_manager.cc",
156 "api/hid/hid_device_manager.h", 156 "api/hid/hid_device_manager.h",
157 "api/management/management_api.cc", 157 "api/management/management_api.cc",
158 "api/management/management_api.h", 158 "api/management/management_api.h",
159 "api/management/management_api_constants.cc", 159 "api/management/management_api_constants.cc",
160 "api/management/management_api_constants.h", 160 "api/management/management_api_constants.h",
161 "api/management/management_api_delegate.h", 161 "api/management/management_api_delegate.h",
162 "api/messaging/native_message_host.cc", 162 "api/messaging/native_message_host.cc",
163 "api/mime_handler_private/mime_handler_private.cc",
164 "api/mime_handler_private/mime_handler_private.h",
163 "api/power/power_api.cc", 165 "api/power/power_api.cc",
164 "api/power/power_api.h", 166 "api/power/power_api.h",
165 "api/power/power_api_manager.cc", 167 "api/power/power_api_manager.cc",
166 "api/power/power_api_manager.h", 168 "api/power/power_api_manager.h",
167 "api/printer_provider_internal/printer_provider_internal_api.cc", 169 "api/printer_provider_internal/printer_provider_internal_api.cc",
168 "api/printer_provider_internal/printer_provider_internal_api.h", 170 "api/printer_provider_internal/printer_provider_internal_api.h",
169 "api/runtime/runtime_api.cc", 171 "api/runtime/runtime_api.cc",
170 "api/runtime/runtime_api.h", 172 "api/runtime/runtime_api.h",
171 "api/runtime/runtime_api_delegate.cc", 173 "api/runtime/runtime_api_delegate.cc",
172 "api/runtime/runtime_api_delegate.h", 174 "api/runtime/runtime_api_delegate.h",
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
545 sources += [ "api/audio/audio_service_linux.cc" ] 547 sources += [ "api/audio/audio_service_linux.cc" ]
546 } else { 548 } else {
547 sources += [ "api/audio/audio_service.cc" ] 549 sources += [ "api/audio/audio_service.cc" ]
548 } 550 }
549 } 551 }
550 552
551 if (is_win) { 553 if (is_win) {
552 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t runcations. 554 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t runcations.
553 } 555 }
554 } 556 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698