| 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("//rlz/features/features.gni") |
| 10 | 11 |
| 11 assert(enable_extensions) | 12 assert(enable_extensions) |
| 12 | 13 |
| 13 static_library("extensions") { | 14 static_library("extensions") { |
| 14 sources = [ | 15 sources = [ |
| 15 # TODO These references to files in //chrome/browser/ should either be | 16 # TODO These references to files in //chrome/browser/ should either be |
| 16 # moved to the browser target or the files moved to this directory. | 17 # moved to the browser target or the files moved to this directory. |
| 17 "../apps/app_launch_for_metro_restart_win.cc", | 18 "../apps/app_launch_for_metro_restart_win.cc", |
| 18 "../apps/app_launch_for_metro_restart_win.h", | 19 "../apps/app_launch_for_metro_restart_win.h", |
| 19 "../apps/app_url_redirector.cc", | 20 "../apps/app_url_redirector.cc", |
| (...skipping 870 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 890 "//extensions:extensions_resources", | 891 "//extensions:extensions_resources", |
| 891 "//extensions/browser", | 892 "//extensions/browser", |
| 892 "//extensions/browser/api:api_registration", | 893 "//extensions/browser/api:api_registration", |
| 893 "//extensions/common/api", | 894 "//extensions/common/api", |
| 894 "//extensions/features", | 895 "//extensions/features", |
| 895 "//extensions/strings", | 896 "//extensions/strings", |
| 896 "//media:media_features", | 897 "//media:media_features", |
| 897 "//net", | 898 "//net", |
| 898 "//ppapi/features", | 899 "//ppapi/features", |
| 899 "//printing/features", | 900 "//printing/features", |
| 901 "//rlz/features", |
| 900 "//skia", | 902 "//skia", |
| 901 "//sql", | 903 "//sql", |
| 902 "//storage/browser", | 904 "//storage/browser", |
| 903 "//storage/common", | 905 "//storage/common", |
| 904 "//third_party/WebKit/public:image_resources", | 906 "//third_party/WebKit/public:image_resources", |
| 905 "//third_party/WebKit/public:resources", | 907 "//third_party/WebKit/public:resources", |
| 906 "//third_party/cacheinvalidation", | 908 "//third_party/cacheinvalidation", |
| 907 "//third_party/icu", | 909 "//third_party/icu", |
| 908 "//third_party/leveldatabase", | 910 "//third_party/leveldatabase", |
| 909 "//third_party/libaddressinput:util", | 911 "//third_party/libaddressinput:util", |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1180 "api/braille_display_private/brlapi_connection.cc", | 1182 "api/braille_display_private/brlapi_connection.cc", |
| 1181 "api/braille_display_private/brlapi_connection.h", | 1183 "api/braille_display_private/brlapi_connection.h", |
| 1182 "api/braille_display_private/brlapi_keycode_map.cc", | 1184 "api/braille_display_private/brlapi_keycode_map.cc", |
| 1183 "api/braille_display_private/brlapi_keycode_map.h", | 1185 "api/braille_display_private/brlapi_keycode_map.h", |
| 1184 ] | 1186 ] |
| 1185 deps += [ "//build/linux/libbrlapi" ] | 1187 deps += [ "//build/linux/libbrlapi" ] |
| 1186 } else { | 1188 } else { |
| 1187 sources += [ "api/braille_display_private/braille_controller_stub.cc" ] | 1189 sources += [ "api/braille_display_private/braille_controller_stub.cc" ] |
| 1188 } | 1190 } |
| 1189 } | 1191 } |
| OLD | NEW |