summaryrefslogtreecommitdiffstats
path: root/components/json_schema/BUILD.gn
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-20 05:13:20 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-20 05:13:20 +0000
commitf43e433ce074a2f7e8b9279a28e5e39b4e1a4637 (patch)
tree5926bd584288c760b1c6e9e3abab591d9f205d37 /components/json_schema/BUILD.gn
parent57fa6dc63a71c652cb08c30d22865f0bd8a50f49 (diff)
downloadchromium_src-f43e433ce074a2f7e8b9279a28e5e39b4e1a4637.zip
chromium_src-f43e433ce074a2f7e8b9279a28e5e39b4e1a4637.tar.gz
chromium_src-f43e433ce074a2f7e8b9279a28e5e39b4e1a4637.tar.bz2
Add cloud_devices and json_schema to GN build.
These components are needed by chrome/common. This also adds a "components" meta-target to avoid listing all components in the root build file. TBR=blundell Review URL: https://codereview.chromium.org/344993002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278608 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/json_schema/BUILD.gn')
-rw-r--r--components/json_schema/BUILD.gn17
1 files changed, 17 insertions, 0 deletions
diff --git a/components/json_schema/BUILD.gn b/components/json_schema/BUILD.gn
new file mode 100644
index 0000000..8bcb7d5
--- /dev/null
+++ b/components/json_schema/BUILD.gn
@@ -0,0 +1,17 @@
+# 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.
+
+static_library("json_schema") {
+ sources = [
+ "json_schema_constants.cc",
+ "json_schema_constants.h",
+ "json_schema_validator.cc",
+ "json_schema_validator.h",
+ ]
+
+ deps = [
+ "//base",
+ "//third_party/re2",
+ ]
+}