| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 '../../build/common.gypi', | 10 '../../build/common.gypi', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 'app_framework/application.cc', | 21 'app_framework/application.cc', |
| 22 'app_framework/application.h', | 22 'app_framework/application.h', |
| 23 'app_framework/platform.h', | 23 'app_framework/platform.h', |
| 24 ], | 24 ], |
| 25 }, | 25 }, |
| 26 { | 26 { |
| 27 'target_name': 'hello_triangle', | 27 'target_name': 'hello_triangle', |
| 28 'type': 'executable', | 28 'type': 'executable', |
| 29 'dependencies': [ | 29 'dependencies': [ |
| 30 'app_framework', | 30 'app_framework', |
| 31 '../../third_party/gles_book_examples/gles_book_examples.gyp:hello_trian
gle', | 31 '../../third_party/gles2_book/gles_book_examples.gyp:hello_triangle', |
| 32 ], | 32 ], |
| 33 'sources': [ | 33 'sources': [ |
| 34 'hello_triangle/main.cc', | 34 'hello_triangle/main.cc', |
| 35 ], | 35 ], |
| 36 }, | 36 }, |
| 37 ] | 37 ] |
| 38 } | 38 } |
| 39 | 39 |
| 40 # Local Variables: | 40 # Local Variables: |
| 41 # tab-width:2 | 41 # tab-width:2 |
| 42 # indent-tabs-mode:nil | 42 # indent-tabs-mode:nil |
| 43 # End: | 43 # End: |
| 44 # vim: set expandtab tabstop=2 shiftwidth=2: | 44 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |