Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(182)

Side by Side Diff: chrome/browser/BUILD.gn

Issue 2789253003: Add chrome/browser/apps/BUILD.gn and move Chrome-specific code there (Closed)
Patch Set: cleanup Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1899 matching lines...) Expand 10 before | Expand all | Expand 10 after
1910 "sync_file_system/syncable_file_system_util.h", 1910 "sync_file_system/syncable_file_system_util.h",
1911 "sync_file_system/task_logger.cc", 1911 "sync_file_system/task_logger.cc",
1912 "sync_file_system/task_logger.h", 1912 "sync_file_system/task_logger.h",
1913 ] 1913 ]
1914 if (enable_media_router) { 1914 if (enable_media_router) {
1915 sources += [ 1915 sources += [
1916 "media/cast_transport_host_filter.cc", 1916 "media/cast_transport_host_filter.cc",
1917 "media/cast_transport_host_filter.h", 1917 "media/cast_transport_host_filter.h",
1918 ] 1918 ]
1919 } 1919 }
1920 public_deps += [ "//chrome/browser/extensions" ] 1920 public_deps += [
1921 allow_circular_includes_from += [ "//chrome/browser/extensions" ] 1921 "//chrome/browser/apps",
1922 "//chrome/browser/extensions",
1923 ]
1924 allow_circular_includes_from += [
1925 "//chrome/browser/apps",
1926 "//chrome/browser/extensions",
1927 ]
1922 deps += [ 1928 deps += [
1923 "//chrome/browser/sync_file_system/drive_backend:sync_file_system_drive_pr oto", 1929 "//chrome/browser/sync_file_system/drive_backend:sync_file_system_drive_pr oto",
1924 "//chrome/common/extensions/api", 1930 "//chrome/common/extensions/api",
1925 "//chrome/common/extensions/api:api_registration", 1931 "//chrome/common/extensions/api:api_registration",
1926 "//chrome/common/extensions/api:extensions_features", 1932 "//chrome/common/extensions/api:extensions_features",
1927 "//components/drive", 1933 "//components/drive",
1928 "//components/proximity_auth/ble", 1934 "//components/proximity_auth/ble",
1929 "//extensions/components/javascript_dialog_extensions_client", 1935 "//extensions/components/javascript_dialog_extensions_client",
1930 "//media/cast:net", 1936 "//media/cast:net",
1931 ] 1937 ]
(...skipping 2700 matching lines...) Expand 10 before | Expand all | Expand 10 after
4632 4638
4633 service_manifest("preferences_manifest") { 4639 service_manifest("preferences_manifest") {
4634 name = "preferences" 4640 name = "preferences"
4635 source = "prefs/preferences_manifest.json" 4641 source = "prefs/preferences_manifest.json"
4636 } 4642 }
4637 4643
4638 service_manifest("preferences_forwarder_manifest") { 4644 service_manifest("preferences_forwarder_manifest") {
4639 name = "preferences_forwarder" 4645 name = "preferences_forwarder"
4640 source = "prefs/forwarder_manifest.json" 4646 source = "prefs/forwarder_manifest.json"
4641 } 4647 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698