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

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

Issue 2753753005: [sync] WebContentsObserver based sessions notifications (Closed)
Patch Set: Use composition Created 3 years, 9 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 1257 matching lines...) Expand 10 before | Expand all | Expand 10 after
1268 "subresource_filter/chrome_subresource_filter_client.cc", 1268 "subresource_filter/chrome_subresource_filter_client.cc",
1269 "subresource_filter/chrome_subresource_filter_client.h", 1269 "subresource_filter/chrome_subresource_filter_client.h",
1270 "sync/chrome_sync_client.cc", 1270 "sync/chrome_sync_client.cc",
1271 "sync/chrome_sync_client.h", 1271 "sync/chrome_sync_client.h",
1272 "sync/glue/extensions_activity_monitor.cc", 1272 "sync/glue/extensions_activity_monitor.cc",
1273 "sync/glue/extensions_activity_monitor.h", 1273 "sync/glue/extensions_activity_monitor.h",
1274 "sync/glue/sync_start_util.cc", 1274 "sync/glue/sync_start_util.cc",
1275 "sync/glue/sync_start_util.h", 1275 "sync/glue/sync_start_util.h",
1276 "sync/profile_sync_service_factory.cc", 1276 "sync/profile_sync_service_factory.cc",
1277 "sync/profile_sync_service_factory.h", 1277 "sync/profile_sync_service_factory.h",
1278 "sync/sessions/notification_service_sessions_router.cc", 1278 "sync/sessions/sync_sessions_router_tab_helper.cc",
1279 "sync/sessions/notification_service_sessions_router.h", 1279 "sync/sessions/sync_sessions_router_tab_helper.h",
1280 "sync/sessions/sync_sessions_web_contents_router.cc",
1281 "sync/sessions/sync_sessions_web_contents_router.h",
1282 "sync/sessions/sync_sessions_web_contents_router_factory.cc",
1283 "sync/sessions/sync_sessions_web_contents_router_factory.h",
1280 "sync/supervised_user_signin_manager_wrapper.cc", 1284 "sync/supervised_user_signin_manager_wrapper.cc",
1281 "sync/supervised_user_signin_manager_wrapper.h", 1285 "sync/supervised_user_signin_manager_wrapper.h",
1282 "sync/sync_startup_tracker.cc", 1286 "sync/sync_startup_tracker.cc",
1283 "sync/sync_startup_tracker.h", 1287 "sync/sync_startup_tracker.h",
1284 "tab_contents/navigation_metrics_recorder.cc", 1288 "tab_contents/navigation_metrics_recorder.cc",
1285 "tab_contents/navigation_metrics_recorder.h", 1289 "tab_contents/navigation_metrics_recorder.h",
1286 "tab_contents/origins_seen_service_factory.cc", 1290 "tab_contents/origins_seen_service_factory.cc",
1287 "tab_contents/origins_seen_service_factory.h", 1291 "tab_contents/origins_seen_service_factory.h",
1288 "tab_contents/retargeting_details.h", 1292 "tab_contents/retargeting_details.h",
1289 "tab_contents/tab_util.cc", 1293 "tab_contents/tab_util.cc",
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
1628 "//net:net_with_v8", 1632 "//net:net_with_v8",
1629 "//v8", 1633 "//v8",
1630 ] 1634 ]
1631 } else { 1635 } else {
1632 deps += [ 1636 deps += [
1633 "//chrome/app/vector_icons", 1637 "//chrome/app/vector_icons",
1634 "//chrome/browser/resources:component_extension_resources", 1638 "//chrome/browser/resources:component_extension_resources",
1635 "//net:net", 1639 "//net:net",
1636 "//ui/vector_icons", 1640 "//ui/vector_icons",
1637 ] 1641 ]
1642 sources += [
1643 "sync/sessions/browser_list_router_helper.cc",
1644 "sync/sessions/browser_list_router_helper.h",
1645 ]
1638 } 1646 }
1639 1647
1640 if (is_chromeos && use_cras) { 1648 if (is_chromeos && use_cras) {
1641 defines += [ "USE_CRAS" ] 1649 defines += [ "USE_CRAS" ]
1642 } 1650 }
1643 1651
1644 if (toolkit_views) { 1652 if (toolkit_views) {
1645 deps += [ "//ui/views" ] 1653 deps += [ "//ui/views" ]
1646 } 1654 }
1647 1655
(...skipping 2930 matching lines...) Expand 10 before | Expand all | Expand 10 after
4578 "media/pepper_cdm_test_constants.cc", 4586 "media/pepper_cdm_test_constants.cc",
4579 "media/pepper_cdm_test_constants.h", 4587 "media/pepper_cdm_test_constants.h",
4580 ] 4588 ]
4581 } 4589 }
4582 } 4590 }
4583 4591
4584 service_manifest("preferences_manifest") { 4592 service_manifest("preferences_manifest") {
4585 name = "preferences" 4593 name = "preferences"
4586 source = "prefs/preferences_manifest.json" 4594 source = "prefs/preferences_manifest.json"
4587 } 4595 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/sync/chrome_sync_client.cc » ('j') | chrome/browser/ui/tab_helpers.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698