| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'skia', | 8 'target_name': 'skia', |
| 9 'type': '<(component)', | 9 'type': '<(component)', |
| 10 'variables': { | 10 'variables': { |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 'include_dirs': [ | 266 'include_dirs': [ |
| 267 '../third_party/skia/include/gpu', | 267 '../third_party/skia/include/gpu', |
| 268 '../third_party/skia/include/gpu/gl', | 268 '../third_party/skia/include/gpu/gl', |
| 269 '../third_party/skia/src/gpu', | 269 '../third_party/skia/src/gpu', |
| 270 ], | 270 ], |
| 271 }, { # skia_support_gpu == 0 | 271 }, { # skia_support_gpu == 0 |
| 272 'defines': [ | 272 'defines': [ |
| 273 'SK_SUPPORT_GPU=0', | 273 'SK_SUPPORT_GPU=0', |
| 274 ], | 274 ], |
| 275 }], | 275 }], |
| 276 ['release_valgrind_build == 1', { |
| 277 'defines': [ |
| 278 'SK_DEBUG_PATH_REF=1', |
| 279 ], |
| 280 'direct_dependent_settings': { |
| 281 'defines': [ |
| 282 'SK_DEBUG_PATH_REF=1', |
| 283 ], |
| 284 }, |
| 285 }], |
| 276 ['order_profiling != 0', { | 286 ['order_profiling != 0', { |
| 277 'target_conditions' : [ | 287 'target_conditions' : [ |
| 278 ['_toolset=="target"', { | 288 ['_toolset=="target"', { |
| 279 'cflags!': [ '-finstrument-functions' ], | 289 'cflags!': [ '-finstrument-functions' ], |
| 280 }], | 290 }], |
| 281 ], | 291 ], |
| 282 }], | 292 }], |
| 283 #Settings for text blitting, chosen to approximate the system browser. | 293 #Settings for text blitting, chosen to approximate the system browser. |
| 284 [ 'OS == "linux"', { | 294 [ 'OS == "linux"', { |
| 285 'defines': [ | 295 'defines': [ |
| (...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 844 'sources': [ | 854 'sources': [ |
| 845 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp', | 855 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp', |
| 846 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', | 856 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', |
| 847 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', | 857 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', |
| 848 ], | 858 ], |
| 849 }, | 859 }, |
| 850 ], | 860 ], |
| 851 }], | 861 }], |
| 852 ], | 862 ], |
| 853 } | 863 } |
| OLD | NEW |