forked from Pissandshittium/pissandshittium
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add more components to the GN build.
google infobars invalidation navigation_intercaption network_time password_manager plugins search_provider_logos sessions R=viettrungluu@chromium.org Review URL: https://codereview.chromium.org/397953005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@283521 0039d316-1c4b-4281-b951-d872f2087c98
- Loading branch information
brettw@chromium.org
committed
Jul 16, 2014
1 parent
82d1419
commit ce9926c
Showing
21 changed files
with
554 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Copyright 2014 The Chromium Authors. All rights reserved. | ||
# Use of this source code is governed by a BSD-style license that can be | ||
# found in the LICENSE file. | ||
|
||
static_library("browser") { | ||
sources = [ | ||
"google_pref_names.cc", | ||
"google_pref_names.h", | ||
"google_search_metrics.cc", | ||
"google_search_metrics.h", | ||
"google_switches.cc", | ||
"google_switches.h", | ||
"google_url_tracker.cc", | ||
"google_url_tracker.h", | ||
"google_url_tracker_client.cc", | ||
"google_url_tracker_client.h", | ||
"google_url_tracker_infobar_delegate.cc", | ||
"google_url_tracker_infobar_delegate.h", | ||
"google_url_tracker_map_entry.cc", | ||
"google_url_tracker_map_entry.h", | ||
"google_url_tracker_navigation_helper.cc", | ||
"google_url_tracker_navigation_helper.h", | ||
"google_util.cc", | ||
"google_util.h", | ||
] | ||
|
||
if (is_win) { | ||
# TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | ||
cflags = [ "/wd4267" ] | ||
} | ||
|
||
deps = [ | ||
"//base", | ||
"//components/keyed_service/core", | ||
"//components/infobars/core", | ||
"//components/strings", | ||
"//components/url_fixer", | ||
"//net", | ||
"//ui/base", | ||
"//url", | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Copyright 2014 The Chromium Authors. All rights reserved. | ||
# Use of this source code is governed by a BSD-style license that can be | ||
# found in the LICENSE file. | ||
|
||
static_library("core") { | ||
sources = [ | ||
"confirm_infobar_delegate.cc", | ||
"confirm_infobar_delegate.h", | ||
"infobar.cc", | ||
"infobar.h", | ||
"infobar_android.cc", | ||
"infobar_container.cc", | ||
"infobar_container.h", | ||
"infobar_delegate.cc", | ||
"infobar_delegate.h", | ||
"infobar_manager.cc", | ||
"infobar_manager.h", | ||
"infobars_switches.cc", | ||
"infobars_switches.h", | ||
] | ||
|
||
deps = [ | ||
"//base", | ||
"//skia", | ||
"//ui/gfx", | ||
"//ui/strings", | ||
] | ||
|
||
# This target exposes Skia headers in its public headers. | ||
forward_dependent_configs_from = [ "//skia" ] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Copyright 2014 The Chromium Authors. All rights reserved. | ||
# Use of this source code is governed by a BSD-style license that can be | ||
# found in the LICENSE file. | ||
|
||
static_library("test_support") { | ||
sources = [ | ||
"infobar_test.cc", | ||
] | ||
|
||
deps = [ | ||
"//base", | ||
"//skia", | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
# Copyright 2014 The Chromium Authors. All rights reserved. | ||
# Use of this source code is governed by a BSD-style license that can be | ||
# found in the LICENSE file. | ||
|
||
static_library("invalidation") { | ||
sources = [ | ||
"invalidation_logger.cc", | ||
"invalidation_logger.h", | ||
"invalidation_logger_observer.h", | ||
"invalidation_prefs.cc", | ||
"invalidation_prefs.h", | ||
"invalidation_service.h", | ||
"invalidation_service_util.cc", | ||
"invalidation_service_util.h", | ||
"invalidation_switches.cc", | ||
"invalidation_switches.h", | ||
"invalidator_registrar.cc", | ||
"invalidator_registrar.h", | ||
"invalidator_storage.cc", | ||
"invalidator_storage.h", | ||
"profile_invalidation_provider.cc", | ||
"profile_invalidation_provider.h", | ||
] | ||
if (!is_android) { | ||
sources += [ | ||
"gcm_invalidation_bridge.cc", | ||
"gcm_invalidation_bridge.h", | ||
"gcm_network_channel.cc", | ||
"gcm_network_channel.h", | ||
"gcm_network_channel_delegate.h", | ||
"invalidation_notifier.cc", | ||
"invalidation_notifier.h", | ||
"non_blocking_invalidator.cc", | ||
"non_blocking_invalidator.h", | ||
"notifier_reason_util.cc", | ||
"notifier_reason_util.h", | ||
"p2p_invalidator.cc", | ||
"p2p_invalidator.h", | ||
"push_client_channel.cc", | ||
"push_client_channel.h", | ||
"state_writer.h", | ||
"sync_invalidation_listener.cc", | ||
"sync_invalidation_listener.h", | ||
"sync_system_resources.cc", | ||
"sync_system_resources.h", | ||
"ticl_invalidation_service.cc", | ||
"ticl_invalidation_service.h", | ||
"ticl_settings_provider.cc", | ||
"ticl_settings_provider.h", | ||
] | ||
} | ||
|
||
# TODO(GYP) remove this when libjingle is added. | ||
configs += [ "//content:libjingle_stub_config" ] | ||
|
||
deps = [ | ||
"//base", | ||
#"//components/gcm_driver", TODO(GYP) | ||
"//google_apis", | ||
"//components/keyed_service/core", | ||
"//components/pref_registry", | ||
#"//components/signin/core/browser", TODO(GYP) | ||
"//sync", | ||
"//third_party/cacheinvalidation", | ||
#'../jingle/jingle.gyp:notifier', TODO(GYP) | ||
] | ||
} | ||
|
||
static_library("test_support") { | ||
sources = [ | ||
"fake_invalidation_handler.cc", | ||
"fake_invalidation_handler.h", | ||
"fake_invalidation_state_tracker.cc", | ||
"fake_invalidation_state_tracker.h", | ||
"fake_invalidator.cc", | ||
"fake_invalidator.h", | ||
"invalidation_service_test_template.cc", | ||
"invalidation_service_test_template.h", | ||
"invalidator_test_template.cc", | ||
"invalidator_test_template.h", | ||
] | ||
if (!is_android) { | ||
sources += [ | ||
"p2p_invalidation_service.cc", | ||
"p2p_invalidation_service.h", | ||
] | ||
} | ||
|
||
deps = [ | ||
"//base", | ||
"//google_apis", | ||
"//net", | ||
"//sync", | ||
"//testing/gmock", | ||
"//third_party/cacheinvalidation", | ||
#'../jingle/jingle.gyp:notifier', TODO(GYP) | ||
#'../jingle/jingle.gyp:notifier_test_util', TODO(GYP) | ||
#'../sync/sync.gyp:test_support_sync_notifier', TODO(GYP) | ||
#'gcm_driver_test_support', TODO(GYP) | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.