summaryrefslogtreecommitdiffstats
path: root/components/tracing/BUILD.gn
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-20 21:52:34 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-20 21:52:34 +0000
commitdf3ecfdef1498c99b11ce31e2cd5e7437a341a21 (patch)
tree8490326af6e3f7a3f2897f663372cdb150c613b4 /components/tracing/BUILD.gn
parent6e48a97dfcbd77b75053ab84650d72e4921fdd3b (diff)
downloadchromium_src-df3ecfdef1498c99b11ce31e2cd5e7437a341a21.zip
chromium_src-df3ecfdef1498c99b11ce31e2cd5e7437a341a21.tar.gz
chromium_src-df3ecfdef1498c99b11ce31e2cd5e7437a341a21.tar.bz2
Start work on GN build for content/common
Add a skeleton build file for content/common that lists the basic deps, and processes the sources. This can keep track of the deps that have been converted and allows easy testing of the .gypi reading. Changes content_common.gypi to separate out the public and private sources. The .gypi combines them both into the 'sources' so current users of this file should not be affected. This allows the GN build to declare the public API. Enhance the gypi-to-gn script to strip conditions and collapse variables to allow the content .gypis to be read in. Adds some simple BUILD.gn files for dependencies of content/common Fix typo in accessibility.gyp that I discovered when writing the GN build. R=jam@chromium.org Review URL: https://codereview.chromium.org/287233002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271767 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/tracing/BUILD.gn')
-rw-r--r--components/tracing/BUILD.gn17
1 files changed, 17 insertions, 0 deletions
diff --git a/components/tracing/BUILD.gn b/components/tracing/BUILD.gn
new file mode 100644
index 0000000..c2e0519
--- /dev/null
+++ b/components/tracing/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.
+
+source_set("tracing") {
+ sources = [
+ "child_trace_message_filter.cc",
+ "child_trace_message_filter.h",
+ "tracing_messages.cc",
+ "tracing_messages.h",
+ ]
+
+ deps = [
+ "//base",
+ "//ipc",
+ ]
+}