| 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 | 10 |
| 10 assert(enable_extensions) | 11 assert(enable_extensions) |
| 11 | 12 |
| 12 static_library("extensions") { | 13 static_library("extensions") { |
| 13 sources = [ | 14 sources = [ |
| 14 # TODO These references to files in //chrome/browser/ should either be | 15 # TODO These references to files in //chrome/browser/ should either be |
| 15 # moved to the browser target or the files moved to this directory. | 16 # moved to the browser target or the files moved to this directory. |
| 16 "../apps/app_launch_for_metro_restart_win.cc", | 17 "../apps/app_launch_for_metro_restart_win.cc", |
| 17 "../apps/app_launch_for_metro_restart_win.h", | 18 "../apps/app_launch_for_metro_restart_win.h", |
| 18 "../apps/app_url_redirector.cc", | 19 "../apps/app_url_redirector.cc", |
| (...skipping 864 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 883 "//content/public/common", | 884 "//content/public/common", |
| 884 "//crypto", | 885 "//crypto", |
| 885 "//device/bluetooth", | 886 "//device/bluetooth", |
| 886 "//device/hid", | 887 "//device/hid", |
| 887 "//extensions:extensions_resources", | 888 "//extensions:extensions_resources", |
| 888 "//extensions/browser", | 889 "//extensions/browser", |
| 889 "//extensions/browser/api:api_registration", | 890 "//extensions/browser/api:api_registration", |
| 890 "//extensions/common/api", | 891 "//extensions/common/api", |
| 891 "//extensions/features", | 892 "//extensions/features", |
| 892 "//extensions/strings", | 893 "//extensions/strings", |
| 894 "//media:media_features", |
| 893 "//net", | 895 "//net", |
| 894 "//ppapi/features", | 896 "//ppapi/features", |
| 895 "//printing/features", | 897 "//printing/features", |
| 896 "//skia", | 898 "//skia", |
| 897 "//sql", | 899 "//sql", |
| 898 "//storage/browser", | 900 "//storage/browser", |
| 899 "//storage/common", | 901 "//storage/common", |
| 900 "//third_party/WebKit/public:image_resources", | 902 "//third_party/WebKit/public:image_resources", |
| 901 "//third_party/WebKit/public:resources", | 903 "//third_party/WebKit/public:resources", |
| 902 "//third_party/cacheinvalidation", | 904 "//third_party/cacheinvalidation", |
| (...skipping 277 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 |