From 3fccb63fc0b838d754ab2cb6a028848ba28ad4a1 Mon Sep 17 00:00:00 2001 From: "jamesr@chromium.org" Date: Mon, 6 Aug 2012 23:19:30 +0000 Subject: Stubs for cc directory This is just enough to enable adding gyp variables and DEPS entries in WebKit for cc. The rest of the code will come later on. BUG=none Review URL: https://chromiumcodereview.appspot.com/10824175 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150169 0039d316-1c4b-4281-b951-d872f2087c98 --- cc/OWNERS | 2 ++ cc/README | 2 ++ cc/cc.gyp | 16 ++++++++++++++++ 3 files changed, 20 insertions(+) create mode 100644 cc/OWNERS create mode 100644 cc/README create mode 100644 cc/cc.gyp (limited to 'cc') diff --git a/cc/OWNERS b/cc/OWNERS new file mode 100644 index 0000000..53feb72 --- /dev/null +++ b/cc/OWNERS @@ -0,0 +1,2 @@ +set noparent +jamesr@chromium.org diff --git a/cc/README b/cc/README new file mode 100644 index 0000000..da4767a --- /dev/null +++ b/cc/README @@ -0,0 +1,2 @@ +The chromium compositor code will go here. For now, this directory is just a +placeholder to make gclient happy. diff --git a/cc/cc.gyp b/cc/cc.gyp new file mode 100644 index 0000000..7b9b665 --- /dev/null +++ b/cc/cc.gyp @@ -0,0 +1,16 @@ +# Copyright (c) 2012 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. + +{ + 'variables': { + 'chromium_code': 0, + }, + + 'targets': [ + { + 'target_name': 'cc', + 'type': 'static_library', + } + ] +} -- cgit v1.1