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

Side by Side Diff: components/keyed_service/core/BUILD.gn

Issue 336443004: Add components/keyed_service to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: no android 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/keyed_service/content/BUILD.gn ('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
(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 component("keyed_service_core") {
tfarina 2014/06/28 20:12:45 Brett, didn't you mean s/keyed_service_core/core h
6 output_name = "keyed_service_core"
7 sources = [
tfarina 2014/06/28 20:12:46 blank line above.
8 "dependency_graph.cc",
9 "dependency_graph.h",
10 "dependency_node.h",
11 "keyed_service.cc",
12 "keyed_service.h",
13 "keyed_service_export.h",
14 ]
15
16 defines = [ "KEYED_SERVICE_IMPLEMENTATION" ]
17 if (is_win) {
tfarina 2014/06/28 20:12:45 I usually put conditions after deps.
tfarina 2014/06/28 20:12:45 blank line above.
18 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
19 cflags = [ "/wd4267" ]
20 }
21
22 deps = [
23 "//base",
24 ]
25 }
OLDNEW
« no previous file with comments | « components/keyed_service/content/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698