| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 | 86 |
| 87 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 87 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 88 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 88 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 89 | 89 |
| 90 deps = [ | 90 deps = [ |
| 91 ":resources", | 91 ":resources", |
| 92 "//base:base", | 92 "//base:base", |
| 93 "//base:i18n", | 93 "//base:i18n", |
| 94 "//cc", | 94 "//cc", |
| 95 "//cc/blink", | 95 "//cc/blink", |
| 96 "//components/test_runner/renderer", |
| 96 "//gin", | 97 "//gin", |
| 97 "//gpu", | 98 "//gpu", |
| 98 "//net", | 99 "//net", |
| 99 "//skia", | 100 "//skia", |
| 100 "//third_party/WebKit/public:blink", | 101 "//third_party/WebKit/public:blink", |
| 101 "//ui/events:dom_keycode_converter", | 102 "//ui/events:dom_keycode_converter", |
| 102 "//ui/events:events_base", | 103 "//ui/events:events_base", |
| 103 "//ui/gfx", | 104 "//ui/gfx", |
| 104 "//ui/gfx/geometry", | 105 "//ui/gfx/geometry", |
| 105 "//url", | 106 "//url", |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 | 183 |
| 183 if (is_mac) { | 184 if (is_mac) { |
| 184 libs = [ "AppKit.framework" ] | 185 libs = [ "AppKit.framework" ] |
| 185 } | 186 } |
| 186 | 187 |
| 187 deps = [ | 188 deps = [ |
| 188 "//build/config/sanitizers:deps", | 189 "//build/config/sanitizers:deps", |
| 189 ] | 190 ] |
| 190 } | 191 } |
| 191 } | 192 } |
| OLD | NEW |