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

Side by Side Diff: components/google/core/browser/BUILD.gn

Issue 397953005: Add more components to the GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: less android Created 6 years, 5 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/google.gypi ('k') | components/infobars.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 static_library("browser") {
6 sources = [
7 "google_pref_names.cc",
8 "google_pref_names.h",
9 "google_search_metrics.cc",
10 "google_search_metrics.h",
11 "google_switches.cc",
12 "google_switches.h",
13 "google_url_tracker.cc",
14 "google_url_tracker.h",
15 "google_url_tracker_client.cc",
16 "google_url_tracker_client.h",
17 "google_url_tracker_infobar_delegate.cc",
18 "google_url_tracker_infobar_delegate.h",
19 "google_url_tracker_map_entry.cc",
20 "google_url_tracker_map_entry.h",
21 "google_url_tracker_navigation_helper.cc",
22 "google_url_tracker_navigation_helper.h",
23 "google_util.cc",
24 "google_util.h",
25 ]
26
27 if (is_win) {
28 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
29 cflags = [ "/wd4267" ]
30 }
31
32 deps = [
33 "//base",
34 "//components/keyed_service/core",
35 "//components/infobars/core",
36 "//components/strings",
37 "//components/url_fixer",
38 "//net",
39 "//ui/base",
40 "//url",
41 ]
42 }
OLDNEW
« no previous file with comments | « components/google.gypi ('k') | components/infobars.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698