diff options
Diffstat (limited to 'gpu/demos/demos.gyp')
-rw-r--r-- | gpu/demos/demos.gyp | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gpu/demos/demos.gyp b/gpu/demos/demos.gyp new file mode 100644 index 0000000..addfa0a --- /dev/null +++ b/gpu/demos/demos.gyp @@ -0,0 +1,33 @@ +# Copyright (c) 2009 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': 1, + }, + 'includes': [ + '../../build/common.gypi', + ], + 'targets': [ + { + 'target_name': 'app_framework', + 'type': 'static_library', + 'dependencies': [ + '../gpu.gyp:command_buffer_client', + '../gpu.gyp:command_buffer_service', + ], + 'sources': [ + 'app_framework/application.cc', + 'app_framework/application.h', + 'app_framework/platform.h', + ], + }, + ] +} + +# Local Variables: +# tab-width:2 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=2 shiftwidth=2: |