| OLD | NEW |
| 1 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
| 3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 # TODO(gram) : figure out how to make this be autoconfigured. | 6 # TODO(gram) : figure out how to make this be autoconfigured. |
| 7 # I've tried a bunch of things with no success yet. | 7 # I've tried a bunch of things with no success yet. |
| 8 'variables': { | 8 'variables': { |
| 9 'skia_build_flag' : '--release', | 9 'skia_build_flag' : '--release', |
| 10 'skia_libs_location_android': '-Lthird_party/skia/trunk/out/config/android-x
86/Release/obj.target/gyp', | 10 'skia_libs_location_android': '-Lthird_party/skia/trunk/out/config/android-x
86/Release/obj.target/gyp', |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 'emulator/emulator_graphics_handler.cc', | 240 'emulator/emulator_graphics_handler.cc', |
| 241 'emulator/emulator_graphics_handler.h', | 241 'emulator/emulator_graphics_handler.h', |
| 242 'emulator/emulator_resource.h', | 242 'emulator/emulator_resource.h', |
| 243 '<(version_cc_file)', | 243 '<(version_cc_file)', |
| 244 ], | 244 ], |
| 245 'link_settings': { | 245 'link_settings': { |
| 246 'ldflags': [ | 246 'ldflags': [ |
| 247 '-Wall', | 247 '-Wall', |
| 248 '<(skia_libs_location_desktop)', | 248 '<(skia_libs_location_desktop)', |
| 249 '-Wl,--start-group', | 249 '-Wl,--start-group', |
| 250 '-lskia_core', |
| 250 '-lskia_effects', | 251 '-lskia_effects', |
| 252 '-lskia_gr', |
| 251 '-lskia_images', | 253 '-lskia_images', |
| 252 '-lskia_core', | |
| 253 '-lskia_opts', | 254 '-lskia_opts', |
| 254 '-lskia_opts_ssse3', | 255 '-lskia_opts_ssse3', |
| 255 '-lskia_ports', | 256 '-lskia_ports', |
| 256 '-lskia_sfnt', | 257 '-lskia_sfnt', |
| 258 '-lskia_skgr', |
| 257 '-lskia_utils', | 259 '-lskia_utils', |
| 258 '-lskia_gr', | |
| 259 '-lskia_skgr', | |
| 260 '-Wl,--end-group', | 260 '-Wl,--end-group', |
| 261 '-lfreetype', | 261 '-lfreetype', |
| 262 ], | 262 ], |
| 263 'libraries': [ | 263 'libraries': [ |
| 264 '-lGL', | 264 '-lGL', |
| 265 '-lglut', | 265 '-lglut', |
| 266 '-lGLU', | 266 '-lGLU', |
| 267 '-lm' | 267 '-lm' |
| 268 ], | 268 ], |
| 269 }, | 269 }, |
| (...skipping 25 matching lines...) Expand all Loading... |
| 295 'message': 'Building Skia.' | 295 'message': 'Building Skia.' |
| 296 } | 296 } |
| 297 ] | 297 ] |
| 298 } | 298 } |
| 299 ], | 299 ], |
| 300 }, | 300 }, |
| 301 ], | 301 ], |
| 302 ], | 302 ], |
| 303 } | 303 } |
| 304 | 304 |
| OLD | NEW |