diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-02 17:08:15 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-02 17:08:15 +0000 |
commit | 4b6d32df475982e22dc3cf704ba4ca61f144ad61 (patch) | |
tree | 8ef78ad1a0671b4b483cc828e34ad3c22cf9789a /components/onc/BUILD.gn | |
parent | 517d528ab250344959419ea53df8b9d0f5e68823 (diff) | |
download | chromium_src-4b6d32df475982e22dc3cf704ba4ca61f144ad61.zip chromium_src-4b6d32df475982e22dc3cf704ba4ca61f144ad61.tar.gz chromium_src-4b6d32df475982e22dc3cf704ba4ca61f144ad61.tar.bz2 |
Move some component's GN build files to main tree.
This moves the files from the shadow tree and updates shared_library -> source_set.
This also hooks up //url to the build (the file was already in the right place)
BUG=
R=blundell@chromium.org
Review URL: https://codereview.chromium.org/221553002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@261140 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/onc/BUILD.gn')
-rw-r--r-- | components/onc/BUILD.gn | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/components/onc/BUILD.gn b/components/onc/BUILD.gn new file mode 100644 index 0000000..f082233 --- /dev/null +++ b/components/onc/BUILD.gn @@ -0,0 +1,17 @@ +# Copyright 2013 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("onc") { + sources = [ + "onc_constants.cc", + "onc_constants.h", + "onc_export.h", + ] + + defines = [ "ONC_IMPLEMENTATION" ] + + deps = [ + "//base", + ] +} |