| OLD | NEW |
| 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 796 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 816 "//chrome:strings", | 817 "//chrome:strings", |
| 817 "//chrome/app:command_ids", | 818 "//chrome/app:command_ids", |
| 818 "//chrome/app/resources:platform_locale_settings", | 819 "//chrome/app/resources:platform_locale_settings", |
| 819 "//chrome/app/theme:chrome_unscaled_resources", | 820 "//chrome/app/theme:chrome_unscaled_resources", |
| 820 "//chrome/app/theme:theme_resources", | 821 "//chrome/app/theme:theme_resources", |
| 821 "//chrome/app/vector_icons", | 822 "//chrome/app/vector_icons", |
| 822 "//chrome/browser/devtools", | 823 "//chrome/browser/devtools", |
| 823 "//chrome/browser/media/router", | 824 "//chrome/browser/media/router", |
| 824 "//chrome/browser/media/router/discovery", | 825 "//chrome/browser/media/router/discovery", |
| 825 "//chrome/common", | 826 "//chrome/common", |
| 827 "//chrome/common/extensions:mojo_bindings", |
| 826 "//chrome/common/extensions/api:api_registration", | 828 "//chrome/common/extensions/api:api_registration", |
| 827 "//chrome/common/extensions/api:extensions_features", | 829 "//chrome/common/extensions/api:extensions_features", |
| 828 "//chrome/common/safe_browsing:proto", | 830 "//chrome/common/safe_browsing:proto", |
| 829 "//components/app_modal", | 831 "//components/app_modal", |
| 830 "//components/autofill/content/browser", | 832 "//components/autofill/content/browser", |
| 831 "//components/bookmarks/browser", | 833 "//components/bookmarks/browser", |
| 832 "//components/bookmarks/managed", | 834 "//components/bookmarks/managed", |
| 833 "//components/browser_sync", | 835 "//components/browser_sync", |
| 834 "//components/browsing_data/core", | 836 "//components/browsing_data/core", |
| 835 "//components/bubble", | 837 "//components/bubble", |
| (...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1174 "api/braille_display_private/brlapi_connection.cc", | 1176 "api/braille_display_private/brlapi_connection.cc", |
| 1175 "api/braille_display_private/brlapi_connection.h", | 1177 "api/braille_display_private/brlapi_connection.h", |
| 1176 "api/braille_display_private/brlapi_keycode_map.cc", | 1178 "api/braille_display_private/brlapi_keycode_map.cc", |
| 1177 "api/braille_display_private/brlapi_keycode_map.h", | 1179 "api/braille_display_private/brlapi_keycode_map.h", |
| 1178 ] | 1180 ] |
| 1179 deps += [ "//build/linux/libbrlapi" ] | 1181 deps += [ "//build/linux/libbrlapi" ] |
| 1180 } else { | 1182 } else { |
| 1181 sources += [ "api/braille_display_private/braille_controller_stub.cc" ] | 1183 sources += [ "api/braille_display_private/braille_controller_stub.cc" ] |
| 1182 } | 1184 } |
| 1183 } | 1185 } |
| OLD | NEW |