| 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 | 8 |
| 9 assert(enable_extensions) | 9 assert(enable_extensions) |
| 10 | 10 |
| (...skipping 900 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 911 "//ui/strings", | 911 "//ui/strings", |
| 912 "//url", | 912 "//url", |
| 913 ] | 913 ] |
| 914 | 914 |
| 915 if (!is_chromeos) { | 915 if (!is_chromeos) { |
| 916 sources += [ "chrome_kiosk_delegate.cc" ] | 916 sources += [ "chrome_kiosk_delegate.cc" ] |
| 917 } | 917 } |
| 918 | 918 |
| 919 if (is_chromeos) { | 919 if (is_chromeos) { |
| 920 sources += [ | 920 sources += [ |
| 921 "api/cast_devices_private/cast_devices_private_api.cc", | |
| 922 "api/cast_devices_private/cast_devices_private_api.h", | |
| 923 "api/certificate_provider/certificate_provider_api.cc", | 921 "api/certificate_provider/certificate_provider_api.cc", |
| 924 "api/certificate_provider/certificate_provider_api.h", | 922 "api/certificate_provider/certificate_provider_api.h", |
| 925 "api/enterprise_device_attributes/enterprise_device_attributes_api.cc", | 923 "api/enterprise_device_attributes/enterprise_device_attributes_api.cc", |
| 926 "api/enterprise_device_attributes/enterprise_device_attributes_api.h", | 924 "api/enterprise_device_attributes/enterprise_device_attributes_api.h", |
| 927 "api/enterprise_platform_keys/enterprise_platform_keys_api.cc", | 925 "api/enterprise_platform_keys/enterprise_platform_keys_api.cc", |
| 928 "api/enterprise_platform_keys/enterprise_platform_keys_api.h", | 926 "api/enterprise_platform_keys/enterprise_platform_keys_api.h", |
| 929 "api/enterprise_platform_keys_private/enterprise_platform_keys_private_api
.cc", | 927 "api/enterprise_platform_keys_private/enterprise_platform_keys_private_api
.cc", |
| 930 "api/enterprise_platform_keys_private/enterprise_platform_keys_private_api
.h", | 928 "api/enterprise_platform_keys_private/enterprise_platform_keys_private_api
.h", |
| 931 "api/file_system/request_file_system_dialog_view.cc", | 929 "api/file_system/request_file_system_dialog_view.cc", |
| 932 "api/file_system/request_file_system_dialog_view.h", | 930 "api/file_system/request_file_system_dialog_view.h", |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1177 "api/braille_display_private/brlapi_connection.cc", | 1175 "api/braille_display_private/brlapi_connection.cc", |
| 1178 "api/braille_display_private/brlapi_connection.h", | 1176 "api/braille_display_private/brlapi_connection.h", |
| 1179 "api/braille_display_private/brlapi_keycode_map.cc", | 1177 "api/braille_display_private/brlapi_keycode_map.cc", |
| 1180 "api/braille_display_private/brlapi_keycode_map.h", | 1178 "api/braille_display_private/brlapi_keycode_map.h", |
| 1181 ] | 1179 ] |
| 1182 deps += [ "//build/linux/libbrlapi" ] | 1180 deps += [ "//build/linux/libbrlapi" ] |
| 1183 } else { | 1181 } else { |
| 1184 sources += [ "api/braille_display_private/braille_controller_stub.cc" ] | 1182 sources += [ "api/braille_display_private/braille_controller_stub.cc" ] |
| 1185 } | 1183 } |
| 1186 } | 1184 } |
| OLD | NEW |