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

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

Issue 2791533002: Convert Web Store Inline Install IPCs to mojo (Closed)
Patch Set: Addressed Ken's comments Created 3 years, 7 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("//mojo/public/tools/bindings/mojom.gni")
10 import("//rlz/features/features.gni") 11 import("//rlz/features/features.gni")
11 12
12 assert(enable_extensions) 13 assert(enable_extensions)
13 14
14 static_library("extensions") { 15 static_library("extensions") {
15 sources = [ 16 sources = [
16 # TODO These references to files in //chrome/browser/ should either be 17 # TODO These references to files in //chrome/browser/ should either be
17 # moved to the browser target or the files moved to this directory. 18 # moved to the browser target or the files moved to this directory.
18 "../ui/app_icon_loader.cc", 19 "../ui/app_icon_loader.cc",
19 "../ui/app_icon_loader.h", 20 "../ui/app_icon_loader.h",
(...skipping 789 matching lines...) Expand 10 before | Expand all | Expand 10 after
809 "//chrome:strings", 810 "//chrome:strings",
810 "//chrome/app:command_ids", 811 "//chrome/app:command_ids",
811 "//chrome/app/resources:platform_locale_settings", 812 "//chrome/app/resources:platform_locale_settings",
812 "//chrome/app/theme:chrome_unscaled_resources", 813 "//chrome/app/theme:chrome_unscaled_resources",
813 "//chrome/app/theme:theme_resources", 814 "//chrome/app/theme:theme_resources",
814 "//chrome/app/vector_icons", 815 "//chrome/app/vector_icons",
815 "//chrome/browser/devtools", 816 "//chrome/browser/devtools",
816 "//chrome/browser/media/router", 817 "//chrome/browser/media/router",
817 "//chrome/browser/media/router/discovery", 818 "//chrome/browser/media/router/discovery",
818 "//chrome/common", 819 "//chrome/common",
820 "//chrome/common/extensions:mojo_bindings",
819 "//chrome/common/extensions/api:api_registration", 821 "//chrome/common/extensions/api:api_registration",
820 "//chrome/common/extensions/api:extensions_features", 822 "//chrome/common/extensions/api:extensions_features",
821 "//chrome/common/safe_browsing:proto", 823 "//chrome/common/safe_browsing:proto",
822 "//components/app_modal", 824 "//components/app_modal",
823 "//components/autofill/content/browser", 825 "//components/autofill/content/browser",
824 "//components/bookmarks/browser", 826 "//components/bookmarks/browser",
825 "//components/bookmarks/managed", 827 "//components/bookmarks/managed",
826 "//components/browser_sync", 828 "//components/browser_sync",
827 "//components/browsing_data/core", 829 "//components/browsing_data/core",
828 "//components/bubble", 830 "//components/bubble",
(...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after
1173 "api/braille_display_private/brlapi_connection.cc", 1175 "api/braille_display_private/brlapi_connection.cc",
1174 "api/braille_display_private/brlapi_connection.h", 1176 "api/braille_display_private/brlapi_connection.h",
1175 "api/braille_display_private/brlapi_keycode_map.cc", 1177 "api/braille_display_private/brlapi_keycode_map.cc",
1176 "api/braille_display_private/brlapi_keycode_map.h", 1178 "api/braille_display_private/brlapi_keycode_map.h",
1177 ] 1179 ]
1178 deps += [ "//build/linux/libbrlapi" ] 1180 deps += [ "//build/linux/libbrlapi" ]
1179 } else { 1181 } else {
1180 sources += [ "api/braille_display_private/braille_controller_stub.cc" ] 1182 sources += [ "api/braille_display_private/braille_controller_stub.cc" ]
1181 } 1183 }
1182 } 1184 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698