| OLD | NEW |
| 1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 Google Inc. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 # GYP file to build hello world example. | 5 # GYP file to build hello world example. |
| 6 { | 6 { |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 'target_name': 'HelloWorld', | 9 'target_name': 'HelloWorld', |
| 10 'type': 'executable', | 10 'type': 'executable', |
| 11 'mac_bundle' : 1, | 11 'mac_bundle' : 1, |
| 12 'include_dirs' : [ | 12 'include_dirs' : [ |
| 13 '../include/gpu', | 13 '../include/gpu', |
| 14 ], | 14 ], |
| 15 'sources': [ | 15 'sources': [ |
| 16 '../example/HelloWorld.h', | 16 '../experimental/example.cpp', |
| 17 '../example/HelloWorld.cpp', | |
| 18 ], | 17 ], |
| 19 'dependencies': [ | 18 'dependencies': [ |
| 20 'skia_lib.gyp:skia_lib', | 19 'skia_lib.gyp:skia_lib', |
| 21 'views.gyp:views', | 20 'views.gyp:views', |
| 22 ], | 21 ], |
| 23 'conditions' : [ | 22 'conditions' : [ |
| 24 [ 'skia_os == "win"', { | 23 [ 'skia_os == "win"', { |
| 25 'sources' : [ | 24 'sources' : [ |
| 26 '../src/views/win/SkOSWindow_Win.cpp', | 25 '../src/views/win/SkOSWindow_Win.cpp', |
| 27 '../src/views/win/skia_win.cpp', | 26 '../src/views/win/skia_win.cpp', |
| (...skipping 18 matching lines...) Expand all Loading... |
| 46 'INFOPLIST_FILE' : '../example/mac/HelloWorld-Info.plist', | 45 'INFOPLIST_FILE' : '../example/mac/HelloWorld-Info.plist', |
| 47 }, | 46 }, |
| 48 'mac_bundle_resources' : [ | 47 'mac_bundle_resources' : [ |
| 49 '../example/mac/HelloWorld.xib' | 48 '../example/mac/HelloWorld.xib' |
| 50 ], | 49 ], |
| 51 }], | 50 }], |
| 52 ], | 51 ], |
| 53 }, | 52 }, |
| 54 ], | 53 ], |
| 55 } | 54 } |
| OLD | NEW |