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

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

Issue 2390823005: Update device permissions dialog ui for Chrome apps and extensions (Closed)
Patch Set: address more comments 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("//extensions/features/features.gni") 6 import("//extensions/features/features.gni")
7 7
8 source_set("browser") { 8 source_set("browser") {
9 sources = [] 9 sources = []
10 10
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 "api/cast_channel/cast_framer_unittest.cc", 352 "api/cast_channel/cast_framer_unittest.cc",
353 "api/cast_channel/cast_socket_unittest.cc", 353 "api/cast_channel/cast_socket_unittest.cc",
354 "api/cast_channel/cast_transport_unittest.cc", 354 "api/cast_channel/cast_transport_unittest.cc",
355 "api/cast_channel/keep_alive_delegate_unittest.cc", 355 "api/cast_channel/keep_alive_delegate_unittest.cc",
356 "api/cast_channel/logger_unittest.cc", 356 "api/cast_channel/logger_unittest.cc",
357 "api/declarative/declarative_rule_unittest.cc", 357 "api/declarative/declarative_rule_unittest.cc",
358 "api/declarative/deduping_factory_unittest.cc", 358 "api/declarative/deduping_factory_unittest.cc",
359 "api/declarative/rules_registry_unittest.cc", 359 "api/declarative/rules_registry_unittest.cc",
360 "api/declarative_webrequest/webrequest_condition_attribute_unittest.cc", 360 "api/declarative_webrequest/webrequest_condition_attribute_unittest.cc",
361 "api/declarative_webrequest/webrequest_condition_unittest.cc", 361 "api/declarative_webrequest/webrequest_condition_unittest.cc",
362 "api/device_permissions_prompt_unittest.cc",
363 "api/document_scan/document_scan_api_unittest.cc", 362 "api/document_scan/document_scan_api_unittest.cc",
364 "api/document_scan/document_scan_interface_chromeos_unittest.cc", 363 "api/document_scan/document_scan_interface_chromeos_unittest.cc",
365 "api/document_scan/mock_document_scan_interface.cc", 364 "api/document_scan/mock_document_scan_interface.cc",
366 "api/idle/idle_api_unittest.cc", 365 "api/idle/idle_api_unittest.cc",
367 "api/mime_handler_private/mime_handler_private_unittest.cc", 366 "api/mime_handler_private/mime_handler_private_unittest.cc",
368 "api/networking_config/networking_config_service_chromeos_unittest.cc", 367 "api/networking_config/networking_config_service_chromeos_unittest.cc",
369 "api/power/power_api_unittest.cc", 368 "api/power/power_api_unittest.cc",
370 "api/runtime/restart_after_delay_api_unittest.cc", 369 "api/runtime/restart_after_delay_api_unittest.cc",
371 "api/sockets_tcp/sockets_tcp_api_unittest.cc", 370 "api/sockets_tcp/sockets_tcp_api_unittest.cc",
372 "api/sockets_udp/sockets_udp_api_unittest.cc", 371 "api/sockets_udp/sockets_udp_api_unittest.cc",
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 "//net:test_support", 442 "//net:test_support",
444 "//third_party/leveldatabase", 443 "//third_party/leveldatabase",
445 "//third_party/zlib:zip", 444 "//third_party/zlib:zip",
446 ] 445 ]
447 446
448 if (is_chromeos) { 447 if (is_chromeos) {
449 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ] 448 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ]
450 deps += [ "//chromeos:test_support" ] 449 deps += [ "//chromeos:test_support" ]
451 } 450 }
452 } 451 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698