| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 "//net", | 102 "//net", |
| 103 "//skia", | 103 "//skia", |
| 104 "//third_party/WebKit/public:blink", | 104 "//third_party/WebKit/public:blink", |
| 105 "//ui/events:dom_keycode_converter", | 105 "//ui/events:dom_keycode_converter", |
| 106 "//ui/events:events_base", | 106 "//ui/events:events_base", |
| 107 "//ui/gfx", | 107 "//ui/gfx", |
| 108 "//ui/gfx:test_support", | 108 "//ui/gfx:test_support", |
| 109 "//ui/gfx/geometry", | 109 "//ui/gfx/geometry", |
| 110 "//url", | 110 "//url", |
| 111 "//v8", | 111 "//v8", |
| 112 | |
| 113 #'copy_test_netscape_plugin', TODO(GYP) | |
| 114 ] | 112 ] |
| 115 } | 113 } |
| 116 | 114 |
| 117 # Font copies. | 115 # Font copies. |
| 118 if (!is_mac) { | 116 if (!is_mac) { |
| 119 copy("copy_ahem") { | 117 copy("copy_ahem") { |
| 120 visibility = [ ":*" ] | 118 visibility = [ ":*" ] |
| 121 sources = [ | 119 sources = [ |
| 122 "resources/fonts/AHEM____.TTF", | 120 "resources/fonts/AHEM____.TTF", |
| 123 ] | 121 ] |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 | 185 |
| 188 if (is_mac) { | 186 if (is_mac) { |
| 189 libs = [ "AppKit.framework" ] | 187 libs = [ "AppKit.framework" ] |
| 190 } | 188 } |
| 191 | 189 |
| 192 deps = [ | 190 deps = [ |
| 193 "//build/config/sanitizers:deps", | 191 "//build/config/sanitizers:deps", |
| 194 ] | 192 ] |
| 195 } | 193 } |
| 196 } | 194 } |
| OLD | NEW |