| OLD | NEW |
| 1 { | 1 { |
| 2 'targets': [ | 2 'targets': [ |
| 3 { | 3 { |
| 4 'target_name': 'CopySkiaAppDeps', | 4 'target_name': 'CopySkiaAppDeps', |
| 5 'type': 'none', | 5 'type': 'none', |
| 6 'dependencies': [ | 6 'dependencies': [ |
| 7 'skia_lib.gyp:skia_lib', | 7 'skia_lib.gyp:skia_lib', |
| 8 'SampleApp.gyp:SampleApp', | 8 'SampleApp.gyp:SampleApp', |
| 9 'bench.gyp:bench', | 9 'bench.gyp:bench', |
| 10 'gm.gyp:gm', | 10 'gm.gyp:gm', |
| 11 'tests.gyp:tests', | 11 'tests.gyp:tests', |
| 12 'pathops_unittest.gyp:pathops_unittest', | 12 'pathops_unittest.gyp:pathops_unittest', |
| 13 'tools.gyp:bench_pictures', | 13 'tools.gyp:bench_pictures', |
| 14 'tools.gyp:render_pictures', | 14 'tools.gyp:render_pictures', |
| 15 'tools.gyp:render_pdfs', | 15 'tools.gyp:render_pdfs', |
| 16 'tools.gyp:skimage', | 16 'tools.gyp:skimage', |
| 17 ], | 17 ], |
| 18 'variables': { | 18 'variables': { |
| 19 'conditions': [ | 19 'conditions': [ |
| 20 [ 'skia_arch_type == "x86"', { | 20 [ 'skia_arch_type == "x86"', { |
| 21 'android_arch%': "x86", | 21 'android_arch%': "x86", |
| 22 }, { | 22 }, { |
| 23 'conditions': [ | 23 'conditions': [ |
| 24 [ 'armv7', { | 24 [ 'arm_version == 7', { |
| 25 'android_arch%': "armeabi-v7a", | 25 'android_arch%': "armeabi-v7a", |
| 26 }, { | 26 }, { |
| 27 'android_arch%': "armeabi", | 27 'android_arch%': "armeabi", |
| 28 }], | 28 }], |
| 29 ], | 29 ], |
| 30 }], | 30 }], |
| 31 ], | 31 ], |
| 32 }, | 32 }, |
| 33 'copies': [ | 33 'copies': [ |
| 34 # Copy gdbserver into the lib.target directory, so that it gets packaged | 34 # Copy gdbserver into the lib.target directory, so that it gets packaged |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 '-Dnative.libs.absolute.dir=<(PRODUCT_DIR)/android/libs', | 108 '-Dnative.libs.absolute.dir=<(PRODUCT_DIR)/android/libs', |
| 109 '-Dout.final.file=<(PRODUCT_DIR)/android/bin/SkiaAndroid.apk', | 109 '-Dout.final.file=<(PRODUCT_DIR)/android/bin/SkiaAndroid.apk', |
| 110 '-Dsdk.dir=<(ANDROID_SDK_ROOT)', | 110 '-Dsdk.dir=<(ANDROID_SDK_ROOT)', |
| 111 'debug', | 111 'debug', |
| 112 ], | 112 ], |
| 113 }, | 113 }, |
| 114 ], | 114 ], |
| 115 }, | 115 }, |
| 116 ], | 116 ], |
| 117 } | 117 } |
| OLD | NEW |