| 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 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 "chrome_kiosk_delegate.h", | 494 "chrome_kiosk_delegate.h", |
| 495 "chrome_kiosk_delegate_chromeos.cc", | 495 "chrome_kiosk_delegate_chromeos.cc", |
| 496 "chrome_mojo_service_registration.cc", | 496 "chrome_mojo_service_registration.cc", |
| 497 "chrome_mojo_service_registration.h", | 497 "chrome_mojo_service_registration.h", |
| 498 "chrome_process_manager_delegate.cc", | 498 "chrome_process_manager_delegate.cc", |
| 499 "chrome_process_manager_delegate.h", | 499 "chrome_process_manager_delegate.h", |
| 500 "chrome_requirements_checker.cc", | 500 "chrome_requirements_checker.cc", |
| 501 "chrome_requirements_checker.h", | 501 "chrome_requirements_checker.h", |
| 502 "chrome_url_request_util.cc", | 502 "chrome_url_request_util.cc", |
| 503 "chrome_url_request_util.h", | 503 "chrome_url_request_util.h", |
| 504 "clipboard_extension_helper.cc", |
| 505 "clipboard_extension_helper.h", |
| 504 "component_extensions_whitelist/whitelist.cc", | 506 "component_extensions_whitelist/whitelist.cc", |
| 505 "component_extensions_whitelist/whitelist.h", | 507 "component_extensions_whitelist/whitelist.h", |
| 506 "component_loader.cc", | 508 "component_loader.cc", |
| 507 "component_loader.h", | 509 "component_loader.h", |
| 508 "component_migration_helper.cc", | 510 "component_migration_helper.cc", |
| 509 "component_migration_helper.h", | 511 "component_migration_helper.h", |
| 510 "context_menu_matcher.cc", | 512 "context_menu_matcher.cc", |
| 511 "context_menu_matcher.h", | 513 "context_menu_matcher.h", |
| 512 "convert_user_script.cc", | 514 "convert_user_script.cc", |
| 513 "convert_user_script.h", | 515 "convert_user_script.h", |
| (...skipping 652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1166 "api/braille_display_private/brlapi_connection.cc", | 1168 "api/braille_display_private/brlapi_connection.cc", |
| 1167 "api/braille_display_private/brlapi_connection.h", | 1169 "api/braille_display_private/brlapi_connection.h", |
| 1168 "api/braille_display_private/brlapi_keycode_map.cc", | 1170 "api/braille_display_private/brlapi_keycode_map.cc", |
| 1169 "api/braille_display_private/brlapi_keycode_map.h", | 1171 "api/braille_display_private/brlapi_keycode_map.h", |
| 1170 ] | 1172 ] |
| 1171 deps += [ "//build/linux/libbrlapi" ] | 1173 deps += [ "//build/linux/libbrlapi" ] |
| 1172 } else { | 1174 } else { |
| 1173 sources += [ "api/braille_display_private/braille_controller_stub.cc" ] | 1175 sources += [ "api/braille_display_private/braille_controller_stub.cc" ] |
| 1174 } | 1176 } |
| 1175 } | 1177 } |
| OLD | NEW |