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

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

Issue 533743004: Fix Chrome linker errors in GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 | « content/test/BUILD.gn ('k') | extensions/common/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/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 23 matching lines...) Expand all
34 sources += [ 34 sources += [
35 "admin_policy.cc", 35 "admin_policy.cc",
36 "admin_policy.h", 36 "admin_policy.h",
37 "api/api_resource.cc", 37 "api/api_resource.cc",
38 "api/api_resource.h", 38 "api/api_resource.h",
39 "api/api_resource_manager.h", 39 "api/api_resource_manager.h",
40 "api/app_runtime/app_runtime_api.cc", 40 "api/app_runtime/app_runtime_api.cc",
41 "api/app_runtime/app_runtime_api.h", 41 "api/app_runtime/app_runtime_api.h",
42 "api/app_view/app_view_internal_api.cc", 42 "api/app_view/app_view_internal_api.cc",
43 "api/app_view/app_view_internal_api.h", 43 "api/app_view/app_view_internal_api.h",
44 "api/guest_view/guest_view_internal_api.cc",
45 "api/guest_view/guest_view_internal_api.h",
44 "api/async_api_function.cc", 46 "api/async_api_function.cc",
45 "api/async_api_function.h", 47 "api/async_api_function.h",
46 "api/bluetooth/bluetooth_api.cc", 48 "api/bluetooth/bluetooth_api.cc",
47 "api/bluetooth/bluetooth_api.h", 49 "api/bluetooth/bluetooth_api.h",
48 "api/bluetooth/bluetooth_api_pairing_delegate.cc", 50 "api/bluetooth/bluetooth_api_pairing_delegate.cc",
49 "api/bluetooth/bluetooth_api_pairing_delegate.h", 51 "api/bluetooth/bluetooth_api_pairing_delegate.h",
50 "api/bluetooth/bluetooth_api_utils.cc", 52 "api/bluetooth/bluetooth_api_utils.cc",
51 "api/bluetooth/bluetooth_api_utils.h", 53 "api/bluetooth/bluetooth_api_utils.h",
52 "api/bluetooth/bluetooth_event_router.cc", 54 "api/bluetooth/bluetooth_event_router.cc",
53 "api/bluetooth/bluetooth_event_router.h", 55 "api/bluetooth/bluetooth_event_router.h",
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 "guest_view/app_view/app_view_guest_delegate.cc", 264 "guest_view/app_view/app_view_guest_delegate.cc",
263 "guest_view/app_view/app_view_guest_delegate.h", 265 "guest_view/app_view/app_view_guest_delegate.h",
264 "guest_view/guest_view_base.cc", 266 "guest_view/guest_view_base.cc",
265 "guest_view/guest_view_base.h", 267 "guest_view/guest_view_base.h",
266 "guest_view/guest_view_constants.cc", 268 "guest_view/guest_view_constants.cc",
267 "guest_view/guest_view_constants.h", 269 "guest_view/guest_view_constants.h",
268 "guest_view/guest_view_manager_factory.h", 270 "guest_view/guest_view_manager_factory.h",
269 "guest_view/guest_view_manager.cc", 271 "guest_view/guest_view_manager.cc",
270 "guest_view/guest_view_manager.h", 272 "guest_view/guest_view_manager.h",
271 "guest_view/guest_view.h", 273 "guest_view/guest_view.h",
274 "guest_view/web_view/javascript_dialog_helper.cc",
275 "guest_view/web_view/javascript_dialog_helper.h",
276 "guest_view/web_view/web_view_constants.cc",
277 "guest_view/web_view/web_view_constants.h",
278 "guest_view/web_view/web_view_guest.cc",
279 "guest_view/web_view/web_view_guest.h",
272 "guest_view/web_view/web_view_guest_delegate.cc", 280 "guest_view/web_view/web_view_guest_delegate.cc",
273 "guest_view/web_view/web_view_guest_delegate.h", 281 "guest_view/web_view/web_view_guest_delegate.h",
282 "guest_view/web_view/web_view_permission_types.h",
283 "guest_view/web_view/web_view_permission_helper.cc",
284 "guest_view/web_view/web_view_permission_helper.h",
274 "guest_view/web_view/web_view_permission_helper_delegate.cc", 285 "guest_view/web_view/web_view_permission_helper_delegate.cc",
275 "guest_view/web_view/web_view_permission_helper_delegate.h", 286 "guest_view/web_view/web_view_permission_helper_delegate.h",
287 "guest_view/web_view/web_view_renderer_state.cc",
288 "guest_view/web_view/web_view_renderer_state.h",
276 "image_loader.cc", 289 "image_loader.cc",
277 "image_loader.h", 290 "image_loader.h",
278 "image_loader_factory.cc", 291 "image_loader_factory.cc",
279 "image_loader_factory.h", 292 "image_loader_factory.h",
280 "image_util.cc", 293 "image_util.cc",
281 "image_util.h", 294 "image_util.h",
282 "info_map.cc", 295 "info_map.cc",
283 "info_map.h", 296 "info_map.h",
284 "install_flag.h", 297 "install_flag.h",
285 "lazy_background_task_queue.cc", 298 "lazy_background_task_queue.cc",
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 "value_store/value_store_change.cc", 333 "value_store/value_store_change.cc",
321 "value_store/value_store_change.h", 334 "value_store/value_store_change.h",
322 "value_store/value_store_frontend.cc", 335 "value_store/value_store_frontend.cc",
323 "value_store/value_store_frontend.h", 336 "value_store/value_store_frontend.h",
324 "value_store/value_store_util.cc", 337 "value_store/value_store_util.cc",
325 "value_store/value_store_util.h", 338 "value_store/value_store_util.h",
326 "verified_contents.cc", 339 "verified_contents.cc",
327 "verified_contents.h", 340 "verified_contents.h",
328 "view_type_utils.cc", 341 "view_type_utils.cc",
329 "view_type_utils.h", 342 "view_type_utils.h",
343 "warning_service.cc",
344 "warning_service.h",
345 "warning_set.cc",
346 "warning_set.h",
330 ] 347 ]
331 348
332 deps += [ 349 deps += [
333 "//components/usb_service", 350 "//components/usb_service",
334 "//crypto:platform", 351 "//crypto:platform",
335 "//device/bluetooth", 352 "//device/bluetooth",
336 "//device/hid", 353 "//device/hid",
337 "//device/serial", 354 "//device/serial",
338 "//extensions/browser/api/cast_channel:cast_channel_proto", 355 "//extensions/browser/api/cast_channel:cast_channel_proto",
339 ] 356 ]
340 357
341 if (use_openssl) { 358 if (use_openssl) {
342 sources += [ 359 sources += [
343 "api/cast_channel/cast_auth_util_openssl.cc", 360 "api/cast_channel/cast_auth_util_openssl.cc",
344 ] 361 ]
345 } else { 362 } else {
346 sources += [ 363 sources += [
347 "api/cast_channel/cast_auth_util_nss.cc", 364 "api/cast_channel/cast_auth_util_nss.cc",
348 ] 365 ]
349 } 366 }
350 } 367 }
351 368
352 if (is_win) { 369 if (is_win) {
353 cflags = [ 370 cflags = [
354 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 371 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
355 ] 372 ]
356 } 373 }
357 } 374 }
OLDNEW
« no previous file with comments | « content/test/BUILD.gn ('k') | extensions/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698