diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-13 23:48:50 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-13 23:48:50 +0000 |
commit | dab154ee9af6c5eefc9bece85e2bd2e6005b85d7 (patch) | |
tree | cf803adf5e6c478078d652d769fd9c59233ed5a5 /content/utility/BUILD.gn | |
parent | 89df3e1e82bde04e4d7db6b3ff46abd1e68d2d87 (diff) | |
download | chromium_src-dab154ee9af6c5eefc9bece85e2bd2e6005b85d7.zip chromium_src-dab154ee9af6c5eefc9bece85e2bd2e6005b85d7.tar.gz chromium_src-dab154ee9af6c5eefc9bece85e2bd2e6005b85d7.tar.bz2 |
Add more content subtargets and deps to the GN build.
Includes courgette, libva, and lzma.
TBR=scottmg
Review URL: https://codereview.chromium.org/334913005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277132 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/utility/BUILD.gn')
-rw-r--r-- | content/utility/BUILD.gn | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/content/utility/BUILD.gn b/content/utility/BUILD.gn new file mode 100644 index 0000000..1cc0ead --- /dev/null +++ b/content/utility/BUILD.gn @@ -0,0 +1,24 @@ +# 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("utility") { + sources = [ + "in_process_utility_thread.cc", + "in_process_utility_thread.h", + "utility_main.cc", + "utility_thread_impl.cc", + "utility_thread_impl.h", + ] + + configs += [ "//content:content_implementation" ] + + deps = [ + "//base", + "//content:export", + "//courgette:courgette_lib", + "//mojo/public/interfaces/service_provider", + "//third_party/WebKit/public:blink_headers", + ] +} + |