| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'includes': [ | 6 'includes': [ |
| 7 '../../ppapi/ppapi.gypi', | 7 '../../ppapi/ppapi.gypi', |
| 8 ], | 8 ], |
| 9 'variables': { | 9 'variables': { |
| 10 'chromium_code': 1, | 10 'chromium_code': 1, |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 ], | 45 ], |
| 46 'sources': [ | 46 'sources': [ |
| 47 'framework/main_exe.cc', | 47 'framework/main_exe.cc', |
| 48 'framework/window.cc', | 48 'framework/window.cc', |
| 49 'framework/window_linux.cc', | 49 'framework/window_linux.cc', |
| 50 'framework/window_mac.mm', | 50 'framework/window_mac.mm', |
| 51 'framework/window_win.cc', | 51 'framework/window_win.cc', |
| 52 'framework/window.h', | 52 'framework/window.h', |
| 53 ], | 53 ], |
| 54 'conditions': [ | 54 'conditions': [ |
| 55 ['OS=="linux"', { | 55 ['toolkit_uses_gtk == 1', { |
| 56 'dependencies': ['../../build/linux/system.gyp:gtk'], | 56 'dependencies': ['../../build/linux/system.gyp:gtk'], |
| 57 }], | 57 }], |
| 58 ], | 58 ], |
| 59 }, | 59 }, |
| 60 { | 60 { |
| 61 'target_name': 'gpu_demo_framework_ppapi', | 61 'target_name': 'gpu_demo_framework_ppapi', |
| 62 'type': 'static_library', | 62 'type': 'static_library', |
| 63 'dependencies': [ | 63 'dependencies': [ |
| 64 'gpu_demo_framework', | 64 'gpu_demo_framework', |
| 65 '../../ppapi/ppapi.gyp:ppapi_cpp_objects', | 65 '../../ppapi/ppapi.gyp:ppapi_cpp_objects', |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 ], | 300 ], |
| 301 }], | 301 }], |
| 302 ], | 302 ], |
| 303 } | 303 } |
| 304 | 304 |
| 305 # Local Variables: | 305 # Local Variables: |
| 306 # tab-width:2 | 306 # tab-width:2 |
| 307 # indent-tabs-mode:nil | 307 # indent-tabs-mode:nil |
| 308 # End: | 308 # End: |
| 309 # vim: set expandtab tabstop=2 shiftwidth=2: | 309 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |