| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 static_library("sfntly") { | 5 static_library("sfntly") { |
| 6 sources = [ | 6 sources = [ |
| 7 "cpp/src/sample/chromium/font_subsetter.cc", | 7 "cpp/src/sample/chromium/font_subsetter.cc", |
| 8 "cpp/src/sample/chromium/font_subsetter.h", | 8 "cpp/src/sample/chromium/font_subsetter.h", |
| 9 "cpp/src/sample/chromium/subsetter_impl.cc", | 9 "cpp/src/sample/chromium/subsetter_impl.cc", |
| 10 "cpp/src/sample/chromium/subsetter_impl.h", | 10 "cpp/src/sample/chromium/subsetter_impl.h", |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 defines = [ "SFNTLY_NO_EXCEPTION" ] | 122 defines = [ "SFNTLY_NO_EXCEPTION" ] |
| 123 include_dirs = [ "cpp/src" ] | 123 include_dirs = [ "cpp/src" ] |
| 124 | 124 |
| 125 configs -= [ "//build/config/compiler:chromium_code" ] | 125 configs -= [ "//build/config/compiler:chromium_code" ] |
| 126 configs += [ "//build/config/compiler:no_chromium_code" ] | 126 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 127 | 127 |
| 128 deps = [ | 128 deps = [ |
| 129 "//third_party/icu:icuuc", | 129 "//third_party/icu:icuuc", |
| 130 ] | 130 ] |
| 131 } | 131 } |
| OLD | NEW |