Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2016 Google Inc. | 1 # Copyright 2016 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 performance testbench. | 5 # GYP file to build performance testbench. |
| 6 # | 6 # |
| 7 { | 7 { |
| 8 'includes': [ | 8 'includes': [ |
| 9 'apptype_console.gypi', | 9 'apptype_console.gypi', |
| 10 ], | 10 ], |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 58 'tools.gyp:proc_stats', | 58 'tools.gyp:proc_stats', |
| 59 'tools.gyp:resources', | 59 'tools.gyp:resources', |
| 60 'tools.gyp:sk_tool_utils', | 60 'tools.gyp:sk_tool_utils', |
| 61 'tools.gyp:timer', | 61 'tools.gyp:timer', |
| 62 'tools.gyp:url_data_manager', | 62 'tools.gyp:url_data_manager', |
| 63 ], | 63 ], |
| 64 'conditions' : [ | 64 'conditions' : [ |
| 65 [ 'skia_os == "android"', { | 65 [ 'skia_os == "android"', { |
| 66 'dependencies': [ | 66 'dependencies': [ |
| 67 'android_deps.gyp:Android_EntryPoint', | 67 'android_deps.gyp:Android_EntryPoint', |
| 68 'android_deps.gyp:native_app_glue', | |
|
djsollen
2016/06/23 16:21:58
drop this into a separate CL.
| |
| 69 ], | 68 ], |
| 70 # views depends on SkOSWindow_android, which we don't want to include | 69 # views depends on SkOSWindow_android, which we don't want to include |
| 71 # so we only include the minimum set of views files in sources | 70 # so we only include the minimum set of views files in sources |
| 72 'dependencies!': [ | 71 'dependencies!': [ |
| 73 'views.gyp:views', | 72 'views.gyp:views', |
| 74 ], | 73 ], |
| 75 'link_settings': { | 74 'link_settings': { |
| 76 'libraries': [ | 75 'libraries': [ |
| 77 '-landroid', | 76 '-landroid', |
| 78 ], | 77 ], |
| (...skipping 23 matching lines...) Expand all Loading... | |
| 102 ], | 101 ], |
| 103 }], | 102 }], |
| 104 ['skia_vulkan == 0', { | 103 ['skia_vulkan == 0', { |
| 105 'sources/': [ ['exclude', 'Vulkan'] | 104 'sources/': [ ['exclude', 'Vulkan'] |
| 106 ], | 105 ], |
| 107 }], | 106 }], |
| 108 ], | 107 ], |
| 109 }, | 108 }, |
| 110 ], | 109 ], |
| 111 } | 110 } |
| OLD | NEW |