| OLD | NEW | 
|    1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |    1 # Copyright (c) 2013 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 import("//build/config/features.gni") |    5 import("//build/config/features.gni") | 
|    6 import("//build/config/ui.gni") |    6 import("//build/config/ui.gni") | 
|    7 import("//testing/test.gni") |    7 import("//testing/test.gni") | 
|    8 if (current_cpu == "arm") { |    8 if (current_cpu == "arm") { | 
|    9   import("//build/config/arm.gni") |    9   import("//build/config/arm.gni") | 
|   10 } |   10 } | 
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  175   } |  175   } | 
|  176 } |  176 } | 
|  177  |  177  | 
|  178 # Internal-facing config for Skia library code. |  178 # Internal-facing config for Skia library code. | 
|  179 config("skia_library_config") { |  179 config("skia_library_config") { | 
|  180   # These include directories are only included for Skia code and are not |  180   # These include directories are only included for Skia code and are not | 
|  181   # exported to dependents. It's not clear if this is on purpose, but this |  181   # exported to dependents. It's not clear if this is on purpose, but this | 
|  182   # matches the GYP build. |  182   # matches the GYP build. | 
|  183   include_dirs = [ |  183   include_dirs = [ | 
|  184     "//third_party/skia/include/private", |  184     "//third_party/skia/include/private", | 
 |  185     "//third_party/skia/include/client/android", | 
|  185     "//third_party/skia/src/core", |  186     "//third_party/skia/src/core", | 
|  186     "//third_party/skia/src/image", |  187     "//third_party/skia/src/image", | 
|  187     "//third_party/skia/src/opts", |  188     "//third_party/skia/src/opts", | 
|  188     "//third_party/skia/src/pdf", |  189     "//third_party/skia/src/pdf", | 
|  189     "//third_party/skia/src/ports", |  190     "//third_party/skia/src/ports", | 
|  190     "//third_party/skia/src/sfnt", |  191     "//third_party/skia/src/sfnt", | 
|  191     "//third_party/skia/src/utils", |  192     "//third_party/skia/src/utils", | 
|  192     "//third_party/skia/src/lazy", |  193     "//third_party/skia/src/lazy", | 
|  193   ] |  194   ] | 
|  194   if (is_mac || is_ios) { |  195   if (is_mac || is_ios) { | 
| (...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  719     ] |  720     ] | 
|  720  |  721  | 
|  721     deps = [ |  722     deps = [ | 
|  722       ":skia", |  723       ":skia", | 
|  723       "//base", |  724       "//base", | 
|  724       "//base/test:test_support", |  725       "//base/test:test_support", | 
|  725       "//build/config/sanitizers:deps", |  726       "//build/config/sanitizers:deps", | 
|  726     ] |  727     ] | 
|  727   } |  728   } | 
|  728 } |  729 } | 
| OLD | NEW |