From dab154ee9af6c5eefc9bece85e2bd2e6005b85d7 Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Fri, 13 Jun 2014 23:48:50 +0000 Subject: 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 --- content/utility/BUILD.gn | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 content/utility/BUILD.gn (limited to 'content/utility/BUILD.gn') 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", + ] +} + -- cgit v1.1