Chromium Code Reviews| 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//third_party/WebKit/Source/bindings/bindings.gni") | 7 import("//third_party/WebKit/Source/bindings/bindings.gni") |
| 8 import("//third_party/WebKit/Source/config.gni") | 8 import("//third_party/WebKit/Source/config.gni") |
| 9 import("//third_party/WebKit/Source/core/core.gni") | 9 import("//third_party/WebKit/Source/core/core.gni") |
| 10 import("//third_party/WebKit/Source/modules/modules.gni") | 10 import("//third_party/WebKit/Source/modules/modules.gni") |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 247 "WebViewImpl.cpp", | 247 "WebViewImpl.cpp", |
| 248 "WebViewImpl.h", | 248 "WebViewImpl.h", |
| 249 "linux/WebFontRendering.cpp", | 249 "linux/WebFontRendering.cpp", |
| 250 "mac/WebScrollbarTheme.mm", | 250 "mac/WebScrollbarTheme.mm", |
| 251 "mac/WebSubstringUtil.mm", | 251 "mac/WebSubstringUtil.mm", |
| 252 "win/WebFontRendering.cpp", | 252 "win/WebFontRendering.cpp", |
| 253 ] | 253 ] |
| 254 | 254 |
| 255 if (is_android) { | 255 if (is_android) { |
| 256 set_sources_assignment_filter([]) | 256 set_sources_assignment_filter([]) |
| 257 sources += [ "linux/WebFontRendering.cpp" ] | 257 sources += [ |
| 258 "../../public/web/linux/WebFontRendering.h", | |
|
Nico
2017/04/27 14:18:09
Same here.
wychen
2017/04/27 23:06:29
This one can be removed. Thanks for catching this!
| |
| 259 "linux/WebFontRendering.cpp", | |
| 260 ] | |
| 258 set_sources_assignment_filter(sources_assignment_filter) | 261 set_sources_assignment_filter(sources_assignment_filter) |
| 259 } | 262 } |
| 260 | 263 |
| 261 if (is_mac) { | 264 if (is_mac) { |
| 262 libs = [ | 265 libs = [ |
| 263 "AppKit.framework", | 266 "AppKit.framework", |
| 264 "Foundation.framework", | 267 "Foundation.framework", |
| 265 ] | 268 ] |
| 266 } | 269 } |
| 267 | 270 |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 435 | 438 |
| 436 if (is_android) { | 439 if (is_android) { |
| 437 deps += [ | 440 deps += [ |
| 438 "//base:base_java", | 441 "//base:base_java", |
| 439 "//content/public/android:content_java", | 442 "//content/public/android:content_java", |
| 440 "//content/shell/android:content_shell_assets", | 443 "//content/shell/android:content_shell_assets", |
| 441 "//net/android:net_java", | 444 "//net/android:net_java", |
| 442 ] | 445 ] |
| 443 } | 446 } |
| 444 } | 447 } |
| OLD | NEW |