| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 "//skia", | 116 "//skia", |
| 117 "//third_party/WebKit/public:blink", | 117 "//third_party/WebKit/public:blink", |
| 118 "//ui/events:dom_keycode_converter", | 118 "//ui/events:dom_keycode_converter", |
| 119 "//ui/events:events_base", | 119 "//ui/events:events_base", |
| 120 "//ui/gfx", | 120 "//ui/gfx", |
| 121 "//ui/gfx:test_support", | 121 "//ui/gfx:test_support", |
| 122 "//ui/gfx/geometry", | 122 "//ui/gfx/geometry", |
| 123 "//url", | 123 "//url", |
| 124 "//v8", | 124 "//v8", |
| 125 ] | 125 ] |
| 126 |
| 127 if (is_mac) { |
| 128 libs = [ "AppKit.framework" ] |
| 129 } |
| 126 } | 130 } |
| 127 | 131 |
| 128 # Font copies. | 132 # Font copies. |
| 129 if (!is_mac) { | 133 if (!is_mac) { |
| 130 copy("copy_ahem") { | 134 copy("copy_ahem") { |
| 131 visibility = [ ":*" ] | 135 visibility = [ ":*" ] |
| 132 sources = [ | 136 sources = [ |
| 133 "resources/fonts/AHEM____.TTF", | 137 "resources/fonts/AHEM____.TTF", |
| 134 ] | 138 ] |
| 135 outputs = [ | 139 outputs = [ |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 if (is_mac) { | 207 if (is_mac) { |
| 204 libs = [ "AppKit.framework" ] | 208 libs = [ "AppKit.framework" ] |
| 205 } | 209 } |
| 206 | 210 |
| 207 deps = [ | 211 deps = [ |
| 208 "//build/config/sanitizers:deps", | 212 "//build/config/sanitizers:deps", |
| 209 "//build/win:default_exe_manifest", | 213 "//build/win:default_exe_manifest", |
| 210 ] | 214 ] |
| 211 } | 215 } |
| 212 } | 216 } |
| OLD | NEW |