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

Side by Side Diff: components/url_fixer/BUILD.gn

Issue 377393002: Add more components to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/url_fixer.gypi ('k') | no next file » | 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 component("core") { 5 static_library("url_fixer") {
6 output_name = "keyed_service_core"
7 sources = [ 6 sources = [
8 "dependency_graph.cc", 7 "url_fixer.cc",
9 "dependency_graph.h", 8 "url_fixer.h",
10 "dependency_node.h",
11 "keyed_service.cc",
12 "keyed_service.h",
13 "keyed_service_export.h",
14 ] 9 ]
15 10
16 defines = [ "KEYED_SERVICE_IMPLEMENTATION" ]
17
18 deps = [ 11 deps = [
19 "//base", 12 "//base",
13 "//net",
20 ] 14 ]
21 15
22 if (is_win) { 16 if (is_win) {
23 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 17 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
24 cflags = [ "/wd4267" ] 18 cflags = [ "/wd4267" ]
25 } 19 }
26 } 20 }
OLDNEW
« no previous file with comments | « components/url_fixer.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698