| OLD | NEW |
| 1 # Common entry point for all Skia executables running in NaCl | 1 # Common entry point for all Skia executables running in NaCl |
| 2 { | 2 { |
| 3 'targets': [ | 3 'targets': [ |
| 4 { | 4 { |
| 5 'target_name': 'nacl_interface', | 5 'target_name': 'nacl_interface', |
| 6 'type': 'static_library', | 6 'type': 'static_library', |
| 7 'dependencies': [ | 7 'dependencies': [ |
| 8 'skia_base_libs.gyp:skia_base_libs', | 8 'skia_lib.gyp:skia_lib', |
| 9 ], | 9 ], |
| 10 'include_dirs': [ | 10 'include_dirs': [ |
| 11 # For SkThreadUtils.h | 11 # For SkThreadUtils.h |
| 12 '../src/utils', | 12 '../src/utils', |
| 13 ], | 13 ], |
| 14 'sources': [ | 14 'sources': [ |
| 15 '../platform_tools/nacl/src/nacl_interface.cpp', | 15 '../platform_tools/nacl/src/nacl_interface.cpp', |
| 16 ], | 16 ], |
| 17 }, | 17 }, |
| 18 ], | 18 ], |
| 19 } | 19 } |
| OLD | NEW |