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

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

Issue 2512563003: Convert enable_plugins to a buildflag header. (Closed)
Patch Set: Merge Created 4 years, 1 month 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 9
10 assert(enable_extensions) 10 assert(enable_extensions)
(...skipping 873 matching lines...) Expand 10 before | Expand all | Expand 10 after
884 "//crypto", 884 "//crypto",
885 "//device/bluetooth", 885 "//device/bluetooth",
886 "//device/hid", 886 "//device/hid",
887 "//extensions:extensions_resources", 887 "//extensions:extensions_resources",
888 "//extensions/browser", 888 "//extensions/browser",
889 "//extensions/browser/api:api_registration", 889 "//extensions/browser/api:api_registration",
890 "//extensions/common/api", 890 "//extensions/common/api",
891 "//extensions/features", 891 "//extensions/features",
892 "//extensions/strings", 892 "//extensions/strings",
893 "//net", 893 "//net",
894 "//ppapi/features",
894 "//printing/features", 895 "//printing/features",
895 "//skia", 896 "//skia",
896 "//sql", 897 "//sql",
897 "//storage/browser", 898 "//storage/browser",
898 "//storage/common", 899 "//storage/common",
899 "//third_party/WebKit/public:image_resources", 900 "//third_party/WebKit/public:image_resources",
900 "//third_party/WebKit/public:resources", 901 "//third_party/WebKit/public:resources",
901 "//third_party/cacheinvalidation", 902 "//third_party/cacheinvalidation",
902 "//third_party/icu", 903 "//third_party/icu",
903 "//third_party/leveldatabase", 904 "//third_party/leveldatabase",
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
1179 "api/braille_display_private/brlapi_connection.cc", 1180 "api/braille_display_private/brlapi_connection.cc",
1180 "api/braille_display_private/brlapi_connection.h", 1181 "api/braille_display_private/brlapi_connection.h",
1181 "api/braille_display_private/brlapi_keycode_map.cc", 1182 "api/braille_display_private/brlapi_keycode_map.cc",
1182 "api/braille_display_private/brlapi_keycode_map.h", 1183 "api/braille_display_private/brlapi_keycode_map.h",
1183 ] 1184 ]
1184 deps += [ "//build/linux/libbrlapi" ] 1185 deps += [ "//build/linux/libbrlapi" ]
1185 } else { 1186 } else {
1186 sources += [ "api/braille_display_private/braille_controller_stub.cc" ] 1187 sources += [ "api/braille_display_private/braille_controller_stub.cc" ]
1187 } 1188 }
1188 } 1189 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698