OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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/allocator.gni") | 5 import("//build/config/allocator.gni") |
6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
9 import("//build/module_args/v8.gni") | 9 import("//build/module_args/v8.gni") |
10 | 10 |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 } | 189 } |
190 if (enable_remoting) { | 190 if (enable_remoting) { |
191 defines += [ "ENABLE_REMOTING=1" ] | 191 defines += [ "ENABLE_REMOTING=1" ] |
192 } | 192 } |
193 if (enable_google_now) { | 193 if (enable_google_now) { |
194 defines += [ "ENABLE_GOOGLE_NOW=1" ] | 194 defines += [ "ENABLE_GOOGLE_NOW=1" ] |
195 } | 195 } |
196 if (enable_one_click_signin) { | 196 if (enable_one_click_signin) { |
197 defines += [ "ENABLE_ONE_CLICK_SIGNIN" ] | 197 defines += [ "ENABLE_ONE_CLICK_SIGNIN" ] |
198 } | 198 } |
199 if (use_athena) { | |
200 defines += [ "USE_ATHENA=1" ] | |
201 } | |
202 if (enable_hidpi) { | 199 if (enable_hidpi) { |
203 defines += [ "ENABLE_HIDPI=1" ] | 200 defines += [ "ENABLE_HIDPI=1" ] |
204 } | 201 } |
205 if (proprietary_codecs) { | 202 if (proprietary_codecs) { |
206 defines += [ "USE_PROPRIETARY_CODECS" ] | 203 defines += [ "USE_PROPRIETARY_CODECS" ] |
207 } | 204 } |
208 if (enable_hangout_services_extension) { | 205 if (enable_hangout_services_extension) { |
209 defines += [ "ENABLE_HANGOUT_SERVICES_EXTENSION=1" ] | 206 defines += [ "ENABLE_HANGOUT_SERVICES_EXTENSION=1" ] |
210 } | 207 } |
211 if (v8_use_external_startup_data) { | 208 if (v8_use_external_startup_data) { |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 "CoreFoundation.framework", | 304 "CoreFoundation.framework", |
308 "CoreGraphics.framework", | 305 "CoreGraphics.framework", |
309 "CoreText.framework", | 306 "CoreText.framework", |
310 "Foundation.framework", | 307 "Foundation.framework", |
311 "UIKit.framework", | 308 "UIKit.framework", |
312 ] | 309 ] |
313 } else if (is_linux) { | 310 } else if (is_linux) { |
314 libs = [ "dl" ] | 311 libs = [ "dl" ] |
315 } | 312 } |
316 } | 313 } |
OLD | NEW |