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

Side by Side Diff: components/google.gypi

Issue 316203003: Componentize GoogleURLTracker(InfoBarDelegate,MapEntry,NavHelper) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Nits Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « components/components_strings.grd ('k') | components/google/DEPS » ('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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'google_core_browser', 8 'target_name': 'google_core_browser',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
11 '../base/base.gyp:base', 11 '../base/base.gyp:base',
12 '../net/net.gyp:net',
13 '../ui/base/ui_base.gyp:ui_base',
14 '../url/url.gyp:url_lib',
15 'components_strings.gyp:components_strings',
16 'keyed_service_core',
17 'infobars_core',
12 ], 18 ],
13 'include_dirs': [ 19 'include_dirs': [
14 '..', 20 '..',
15 ], 21 ],
16 'sources': [ 22 'sources': [
17 'google/core/browser/google_pref_names.cc', 23 'google/core/browser/google_pref_names.cc',
18 'google/core/browser/google_pref_names.h', 24 'google/core/browser/google_pref_names.h',
19 'google/core/browser/google_search_metrics.cc', 25 'google/core/browser/google_search_metrics.cc',
20 'google/core/browser/google_search_metrics.h', 26 'google/core/browser/google_search_metrics.h',
21 'google/core/browser/google_switches.cc', 27 'google/core/browser/google_switches.cc',
22 'google/core/browser/google_switches.h', 28 'google/core/browser/google_switches.h',
29 'google/core/browser/google_url_tracker.cc',
30 'google/core/browser/google_url_tracker.h',
23 'google/core/browser/google_url_tracker_client.cc', 31 'google/core/browser/google_url_tracker_client.cc',
24 'google/core/browser/google_url_tracker_client.h', 32 'google/core/browser/google_url_tracker_client.h',
33 'google/core/browser/google_url_tracker_infobar_delegate.cc',
34 'google/core/browser/google_url_tracker_infobar_delegate.h',
35 'google/core/browser/google_url_tracker_map_entry.cc',
36 'google/core/browser/google_url_tracker_map_entry.h',
37 'google/core/browser/google_url_tracker_navigation_helper.cc',
38 'google/core/browser/google_url_tracker_navigation_helper.h',
25 ], 39 ],
40 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
41 'msvs_disabled_warnings': [4267, ],
26 }, 42 },
27 ], 43 ],
28 } 44 }
OLDNEW
« no previous file with comments | « components/components_strings.grd ('k') | components/google/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698