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

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

Issue 2753753005: [sync] WebContentsObserver based sessions notifications (Closed)
Patch Set: use base:MakeUnique, alphabetize 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
« no previous file with comments | « no previous file | chrome/browser/sync/chrome_sync_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1261 matching lines...) Expand 10 before | Expand all | Expand 10 after
1272 "subresource_filter/chrome_subresource_filter_client.cc", 1272 "subresource_filter/chrome_subresource_filter_client.cc",
1273 "subresource_filter/chrome_subresource_filter_client.h", 1273 "subresource_filter/chrome_subresource_filter_client.h",
1274 "sync/chrome_sync_client.cc", 1274 "sync/chrome_sync_client.cc",
1275 "sync/chrome_sync_client.h", 1275 "sync/chrome_sync_client.h",
1276 "sync/glue/extensions_activity_monitor.cc", 1276 "sync/glue/extensions_activity_monitor.cc",
1277 "sync/glue/extensions_activity_monitor.h", 1277 "sync/glue/extensions_activity_monitor.h",
1278 "sync/glue/sync_start_util.cc", 1278 "sync/glue/sync_start_util.cc",
1279 "sync/glue/sync_start_util.h", 1279 "sync/glue/sync_start_util.h",
1280 "sync/profile_sync_service_factory.cc", 1280 "sync/profile_sync_service_factory.cc",
1281 "sync/profile_sync_service_factory.h", 1281 "sync/profile_sync_service_factory.h",
1282 "sync/sessions/notification_service_sessions_router.cc", 1282 "sync/sessions/sync_sessions_router_tab_helper.cc",
1283 "sync/sessions/notification_service_sessions_router.h", 1283 "sync/sessions/sync_sessions_router_tab_helper.h",
1284 "sync/sessions/sync_sessions_web_contents_router.cc",
1285 "sync/sessions/sync_sessions_web_contents_router.h",
1286 "sync/sessions/sync_sessions_web_contents_router_factory.cc",
1287 "sync/sessions/sync_sessions_web_contents_router_factory.h",
1284 "sync/supervised_user_signin_manager_wrapper.cc", 1288 "sync/supervised_user_signin_manager_wrapper.cc",
1285 "sync/supervised_user_signin_manager_wrapper.h", 1289 "sync/supervised_user_signin_manager_wrapper.h",
1286 "sync/sync_startup_tracker.cc", 1290 "sync/sync_startup_tracker.cc",
1287 "sync/sync_startup_tracker.h", 1291 "sync/sync_startup_tracker.h",
1288 "tab_contents/navigation_metrics_recorder.cc", 1292 "tab_contents/navigation_metrics_recorder.cc",
1289 "tab_contents/navigation_metrics_recorder.h", 1293 "tab_contents/navigation_metrics_recorder.h",
1290 "tab_contents/origins_seen_service_factory.cc", 1294 "tab_contents/origins_seen_service_factory.cc",
1291 "tab_contents/origins_seen_service_factory.h", 1295 "tab_contents/origins_seen_service_factory.h",
1292 "tab_contents/retargeting_details.h", 1296 "tab_contents/retargeting_details.h",
1293 "tab_contents/tab_util.cc", 1297 "tab_contents/tab_util.cc",
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
1633 "//net:net_with_v8", 1637 "//net:net_with_v8",
1634 "//v8", 1638 "//v8",
1635 ] 1639 ]
1636 } else { 1640 } else {
1637 deps += [ 1641 deps += [
1638 "//chrome/app/vector_icons", 1642 "//chrome/app/vector_icons",
1639 "//chrome/browser/resources:component_extension_resources", 1643 "//chrome/browser/resources:component_extension_resources",
1640 "//net:net", 1644 "//net:net",
1641 "//ui/vector_icons", 1645 "//ui/vector_icons",
1642 ] 1646 ]
1647 sources += [
1648 "sync/sessions/browser_list_router_helper.cc",
1649 "sync/sessions/browser_list_router_helper.h",
1650 ]
1643 } 1651 }
1644 1652
1645 if (is_chromeos && use_cras) { 1653 if (is_chromeos && use_cras) {
1646 defines += [ "USE_CRAS" ] 1654 defines += [ "USE_CRAS" ]
1647 } 1655 }
1648 1656
1649 if (toolkit_views) { 1657 if (toolkit_views) {
1650 deps += [ "//ui/views" ] 1658 deps += [ "//ui/views" ]
1651 } 1659 }
1652 1660
(...skipping 2935 matching lines...) Expand 10 before | Expand all | Expand 10 after
4588 "media/pepper_cdm_test_constants.cc", 4596 "media/pepper_cdm_test_constants.cc",
4589 "media/pepper_cdm_test_constants.h", 4597 "media/pepper_cdm_test_constants.h",
4590 ] 4598 ]
4591 } 4599 }
4592 } 4600 }
4593 4601
4594 service_manifest("preferences_manifest") { 4602 service_manifest("preferences_manifest") {
4595 name = "preferences" 4603 name = "preferences"
4596 source = "prefs/preferences_manifest.json" 4604 source = "prefs/preferences_manifest.json"
4597 } 4605 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/sync/chrome_sync_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698