| 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 | 9 |
| 9 assert(enable_extensions) | 10 assert(enable_extensions) |
| 10 | 11 |
| 11 static_library("extensions") { | 12 static_library("extensions") { |
| 12 sources = [ | 13 sources = [ |
| 13 # TODO These references to files in //chrome/browser/ should either be | 14 # TODO These references to files in //chrome/browser/ should either be |
| 14 # moved to the browser target or the files moved to this directory. | 15 # moved to the browser target or the files moved to this directory. |
| 15 "../apps/app_launch_for_metro_restart_win.cc", | 16 "../apps/app_launch_for_metro_restart_win.cc", |
| 16 "../apps/app_launch_for_metro_restart_win.h", | 17 "../apps/app_launch_for_metro_restart_win.h", |
| 17 "../apps/app_url_redirector.cc", | 18 "../apps/app_url_redirector.cc", |
| (...skipping 862 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 880 "//components/zoom", | 881 "//components/zoom", |
| 881 "//content/app/resources", | 882 "//content/app/resources", |
| 882 "//content/public/common", | 883 "//content/public/common", |
| 883 "//crypto", | 884 "//crypto", |
| 884 "//device/bluetooth", | 885 "//device/bluetooth", |
| 885 "//device/hid", | 886 "//device/hid", |
| 886 "//extensions:extensions_resources", | 887 "//extensions:extensions_resources", |
| 887 "//extensions/browser", | 888 "//extensions/browser", |
| 888 "//extensions/browser/api:api_registration", | 889 "//extensions/browser/api:api_registration", |
| 889 "//extensions/common/api", | 890 "//extensions/common/api", |
| 891 "//extensions/features", |
| 890 "//extensions/strings", | 892 "//extensions/strings", |
| 891 "//net", | 893 "//net", |
| 892 "//printing/features", | 894 "//printing/features", |
| 893 "//skia", | 895 "//skia", |
| 894 "//sql", | 896 "//sql", |
| 895 "//storage/browser", | 897 "//storage/browser", |
| 896 "//storage/common", | 898 "//storage/common", |
| 897 "//third_party/WebKit/public:image_resources", | 899 "//third_party/WebKit/public:image_resources", |
| 898 "//third_party/WebKit/public:resources", | 900 "//third_party/WebKit/public:resources", |
| 899 "//third_party/cacheinvalidation", | 901 "//third_party/cacheinvalidation", |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1177 "api/braille_display_private/brlapi_connection.cc", | 1179 "api/braille_display_private/brlapi_connection.cc", |
| 1178 "api/braille_display_private/brlapi_connection.h", | 1180 "api/braille_display_private/brlapi_connection.h", |
| 1179 "api/braille_display_private/brlapi_keycode_map.cc", | 1181 "api/braille_display_private/brlapi_keycode_map.cc", |
| 1180 "api/braille_display_private/brlapi_keycode_map.h", | 1182 "api/braille_display_private/brlapi_keycode_map.h", |
| 1181 ] | 1183 ] |
| 1182 deps += [ "//build/linux/libbrlapi" ] | 1184 deps += [ "//build/linux/libbrlapi" ] |
| 1183 } else { | 1185 } else { |
| 1184 sources += [ "api/braille_display_private/braille_controller_stub.cc" ] | 1186 sources += [ "api/braille_display_private/braille_controller_stub.cc" ] |
| 1185 } | 1187 } |
| 1186 } | 1188 } |
| OLD | NEW |