diff options
-rw-r--r-- | cc/OWNERS | 2 | ||||
-rw-r--r-- | cc/README | 2 | ||||
-rw-r--r-- | cc/cc.gyp | 16 |
3 files changed, 20 insertions, 0 deletions
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', + } + ] +} |