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 24 matching lines...) Expand all Loading... |
35 "//build/config/compiler:wexit_time_destructors", | 35 "//build/config/compiler:wexit_time_destructors", |
36 "//third_party/WebKit/Source:config", | 36 "//third_party/WebKit/Source:config", |
37 "//third_party/WebKit/Source:inside_blink", | 37 "//third_party/WebKit/Source:inside_blink", |
38 "//third_party/WebKit/Source:non_test_config", | 38 "//third_party/WebKit/Source:non_test_config", |
39 ] | 39 ] |
40 | 40 |
41 defines = [ "BLINK_WEB_IMPLEMENTATION=1" ] | 41 defines = [ "BLINK_WEB_IMPLEMENTATION=1" ] |
42 | 42 |
43 sources = web_gypi.web_files | 43 sources = web_gypi.web_files |
44 | 44 |
45 if (!use_default_render_theme) { | |
46 sources -= [ "default/WebRenderTheme.cpp" ] | |
47 } | |
48 | |
49 if (is_android) { | 45 if (is_android) { |
50 set_sources_assignment_filter([]) | 46 set_sources_assignment_filter([]) |
51 sources += [ "linux/WebFontRendering.cpp" ] | 47 sources += [ "linux/WebFontRendering.cpp" ] |
52 set_sources_assignment_filter(sources_assignment_filter) | 48 set_sources_assignment_filter(sources_assignment_filter) |
53 } | 49 } |
54 | 50 |
55 if (is_mac) { | 51 if (is_mac) { |
56 libs = [ | 52 libs = [ |
57 "AppKit.framework", | 53 "AppKit.framework", |
58 "Foundation.framework", | 54 "Foundation.framework", |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 | 135 |
140 if (is_android) { | 136 if (is_android) { |
141 deps += [ | 137 deps += [ |
142 "//base:base_java", | 138 "//base:base_java", |
143 "//content/public/android:content_java", | 139 "//content/public/android:content_java", |
144 "//content/shell/android:content_shell_assets", | 140 "//content/shell/android:content_shell_assets", |
145 "//net/android:net_java", | 141 "//net/android:net_java", |
146 ] | 142 ] |
147 } | 143 } |
148 } | 144 } |
OLD | NEW |