| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/split_static_library.gni") | 9 import("//build/split_static_library.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 1906 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1917 "sync_file_system/syncable_file_system_util.h", | 1917 "sync_file_system/syncable_file_system_util.h", |
| 1918 "sync_file_system/task_logger.cc", | 1918 "sync_file_system/task_logger.cc", |
| 1919 "sync_file_system/task_logger.h", | 1919 "sync_file_system/task_logger.h", |
| 1920 ] | 1920 ] |
| 1921 if (enable_media_router) { | 1921 if (enable_media_router) { |
| 1922 sources += [ | 1922 sources += [ |
| 1923 "media/cast_transport_host_filter.cc", | 1923 "media/cast_transport_host_filter.cc", |
| 1924 "media/cast_transport_host_filter.h", | 1924 "media/cast_transport_host_filter.h", |
| 1925 ] | 1925 ] |
| 1926 } | 1926 } |
| 1927 public_deps += [ "//chrome/browser/extensions" ] | 1927 public_deps += [ |
| 1928 allow_circular_includes_from += [ "//chrome/browser/extensions" ] | 1928 "//chrome/browser/apps", |
| 1929 "//chrome/browser/extensions", |
| 1930 ] |
| 1931 allow_circular_includes_from += [ |
| 1932 "//chrome/browser/apps", |
| 1933 "//chrome/browser/extensions", |
| 1934 ] |
| 1929 deps += [ | 1935 deps += [ |
| 1930 "//chrome/browser/sync_file_system/drive_backend:sync_file_system_drive_pr
oto", | 1936 "//chrome/browser/sync_file_system/drive_backend:sync_file_system_drive_pr
oto", |
| 1931 "//chrome/common/extensions/api", | 1937 "//chrome/common/extensions/api", |
| 1932 "//chrome/common/extensions/api:api_registration", | 1938 "//chrome/common/extensions/api:api_registration", |
| 1933 "//chrome/common/extensions/api:extensions_features", | 1939 "//chrome/common/extensions/api:extensions_features", |
| 1934 "//components/drive", | 1940 "//components/drive", |
| 1935 "//components/proximity_auth/ble", | 1941 "//components/proximity_auth/ble", |
| 1936 "//extensions/components/javascript_dialog_extensions_client", | 1942 "//extensions/components/javascript_dialog_extensions_client", |
| 1937 "//media/cast:net", | 1943 "//media/cast:net", |
| 1938 ] | 1944 ] |
| (...skipping 2717 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4656 "media/pepper_cdm_test_constants.cc", | 4662 "media/pepper_cdm_test_constants.cc", |
| 4657 "media/pepper_cdm_test_constants.h", | 4663 "media/pepper_cdm_test_constants.h", |
| 4658 ] | 4664 ] |
| 4659 } | 4665 } |
| 4660 } | 4666 } |
| 4661 | 4667 |
| 4662 service_manifest("preferences_forwarder_manifest") { | 4668 service_manifest("preferences_forwarder_manifest") { |
| 4663 name = "preferences_forwarder" | 4669 name = "preferences_forwarder" |
| 4664 source = "prefs/forwarder_manifest.json" | 4670 source = "prefs/forwarder_manifest.json" |
| 4665 } | 4671 } |
| OLD | NEW |