| OLD | NEW | 
|---|
|  | (Empty) | 
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |  | 
| 2 # Use of this source code is governed by a BSD-style license that can be |  | 
| 3 # found in the LICENSE file. |  | 
| 4 |  | 
| 5 { |  | 
| 6   'variables': { |  | 
| 7     'chromium_code': 1, |  | 
| 8   }, |  | 
| 9   'target_defaults': { |  | 
| 10     'conditions': [ |  | 
| 11       ['use_x11 == 1', { |  | 
| 12         'include_dirs': [ |  | 
| 13           '../../third_party/khronos', |  | 
| 14         ], |  | 
| 15       }], |  | 
| 16     ], |  | 
| 17   }, |  | 
| 18   'targets': [ |  | 
| 19     { |  | 
| 20       'target_name': 'surface', |  | 
| 21       'type': '<(component)', |  | 
| 22       'dependencies': [ |  | 
| 23         '../../base/base.gyp:base', |  | 
| 24         '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
    mic_annotations', |  | 
| 25         '../../skia/skia.gyp:skia', |  | 
| 26         '../base/ui_base.gyp:ui_base', |  | 
| 27         '../gfx/gfx.gyp:gfx_geometry', |  | 
| 28         '../gl/gl.gyp:gl', |  | 
| 29         '../gl/init/gl_init.gyp:gl_init', |  | 
| 30       ], |  | 
| 31       'sources': [ |  | 
| 32         'surface_export.h', |  | 
| 33         'transport_dib.cc', |  | 
| 34         'transport_dib.h', |  | 
| 35         'transport_dib_posix.cc', |  | 
| 36         'transport_dib_win.cc', |  | 
| 37       ], |  | 
| 38       'defines': [ |  | 
| 39         'SURFACE_IMPLEMENTATION', |  | 
| 40       ], |  | 
| 41     }, |  | 
| 42   ], |  | 
| 43 } |  | 
| OLD | NEW | 
|---|