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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/keyed_service/content/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/keyed_service/core/BUILD.gn
diff --git a/components/keyed_service/core/BUILD.gn b/components/keyed_service/core/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..10cf1bbfdb5d9571c922dd8193a265cba7c44861
--- /dev/null
+++ b/components/keyed_service/core/BUILD.gn
@@ -0,0 +1,25 @@
+# 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.
+
+component("keyed_service_core") {
tfarina 2014/06/28 20:12:45 Brett, didn't you mean s/keyed_service_core/core h
+ output_name = "keyed_service_core"
+ sources = [
tfarina 2014/06/28 20:12:46 blank line above.
+ "dependency_graph.cc",
+ "dependency_graph.h",
+ "dependency_node.h",
+ "keyed_service.cc",
+ "keyed_service.h",
+ "keyed_service_export.h",
+ ]
+
+ defines = [ "KEYED_SERVICE_IMPLEMENTATION" ]
+ 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.
+ # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
+ cflags = [ "/wd4267" ]
+ }
+
+ deps = [
+ "//base",
+ ]
+}
« 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