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

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

Issue 2753753007: Introduce Identity Service and its initial usage (Closed)
Patch Set: Response to reviews Created 3 years, 9 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 879 matching lines...) Expand 10 before | Expand all | Expand 10 after
890 "//extensions/browser/api:api_registration", 890 "//extensions/browser/api:api_registration",
891 "//extensions/common", 891 "//extensions/common",
892 "//extensions/common/api", 892 "//extensions/common/api",
893 "//extensions/features", 893 "//extensions/features",
894 "//extensions/strings", 894 "//extensions/strings",
895 "//media:media_features", 895 "//media:media_features",
896 "//net", 896 "//net",
897 "//ppapi/features", 897 "//ppapi/features",
898 "//printing/features", 898 "//printing/features",
899 "//rlz/features", 899 "//rlz/features",
900 "//services/identity/public/interfaces",
901 "//services/service_manager/public/cpp",
902 "//services/service_manager/public/interfaces",
900 "//skia", 903 "//skia",
901 "//sql", 904 "//sql",
902 "//storage/browser", 905 "//storage/browser",
903 "//storage/common", 906 "//storage/common",
904 "//third_party/WebKit/public:image_resources", 907 "//third_party/WebKit/public:image_resources",
905 "//third_party/WebKit/public:resources", 908 "//third_party/WebKit/public:resources",
906 "//third_party/cacheinvalidation", 909 "//third_party/cacheinvalidation",
907 "//third_party/icu", 910 "//third_party/icu",
908 "//third_party/leveldatabase", 911 "//third_party/leveldatabase",
909 "//third_party/libaddressinput:util", 912 "//third_party/libaddressinput:util",
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
1184 "api/braille_display_private/brlapi_connection.cc", 1187 "api/braille_display_private/brlapi_connection.cc",
1185 "api/braille_display_private/brlapi_connection.h", 1188 "api/braille_display_private/brlapi_connection.h",
1186 "api/braille_display_private/brlapi_keycode_map.cc", 1189 "api/braille_display_private/brlapi_keycode_map.cc",
1187 "api/braille_display_private/brlapi_keycode_map.h", 1190 "api/braille_display_private/brlapi_keycode_map.h",
1188 ] 1191 ]
1189 deps += [ "//build/linux/libbrlapi" ] 1192 deps += [ "//build/linux/libbrlapi" ]
1190 } else { 1193 } else {
1191 sources += [ "api/braille_display_private/braille_controller_stub.cc" ] 1194 sources += [ "api/braille_display_private/braille_controller_stub.cc" ]
1192 } 1195 }
1193 } 1196 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698