| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//content/common/common.gni") | 7 import("//content/common/common.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//mojo/public/tools/bindings/mojom.gni") | 9 import("//mojo/public/tools/bindings/mojom.gni") |
| 10 if (is_mac) { | 10 if (is_mac) { |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 ] | 142 ] |
| 143 | 143 |
| 144 configs += [ | 144 configs += [ |
| 145 "//content:content_implementation", | 145 "//content:content_implementation", |
| 146 "//build/config:precompiled_headers", | 146 "//build/config:precompiled_headers", |
| 147 "//build/config/compiler:no_size_t_to_int_warning", | 147 "//build/config/compiler:no_size_t_to_int_warning", |
| 148 ] | 148 ] |
| 149 | 149 |
| 150 public_deps = [ | 150 public_deps = [ |
| 151 "//gpu/command_buffer/common", | 151 "//gpu/command_buffer/common", |
| 152 "//ipc", |
| 152 "//third_party/WebKit/public:blink_headers", | 153 "//third_party/WebKit/public:blink_headers", |
| 153 ] | 154 ] |
| 154 deps = [ | 155 deps = [ |
| 155 "//base", | 156 "//base", |
| 156 "//build/util:webkit_version", | 157 "//build/util:webkit_version", |
| 157 "//components/mus/public/interfaces", | 158 "//components/mus/public/interfaces", |
| 158 "//components/tracing", | 159 "//components/tracing", |
| 159 "//components/tracing:startup_tracing", | 160 "//components/tracing:startup_tracing", |
| 160 "//gpu/command_buffer/client:gles2_interface", | 161 "//gpu/command_buffer/client:gles2_interface", |
| 161 "//gpu/command_buffer/common:gles2_utils", | 162 "//gpu/command_buffer/common:gles2_utils", |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 ] | 264 ] |
| 264 | 265 |
| 265 deps += [ | 266 deps += [ |
| 266 "//content/public/android:common_aidl", | 267 "//content/public/android:common_aidl", |
| 267 "//content/public/android:jni", | 268 "//content/public/android:jni", |
| 268 ] | 269 ] |
| 269 | 270 |
| 270 libs += [ "android" ] | 271 libs += [ "android" ] |
| 271 } | 272 } |
| 272 | 273 |
| 273 if (is_debug && !is_component_build) { | 274 if (is_debug && !is_component_build && enable_plugins) { |
| 274 # Content depends on the PPAPI message logging stuff; if this isn't here, | 275 # Content depends on the PPAPI message logging stuff; if this isn't here, |
| 275 # some unit test binaries won't compile. This only worked in release mode | 276 # some unit test binaries won't compile. This only worked in release mode |
| 276 # because logging is disabled there. | 277 # because logging is disabled there. |
| 277 deps += [ "//ppapi/proxy:ipc_sources" ] | 278 deps += [ "//ppapi/proxy:ipc_sources" ] |
| 278 } | 279 } |
| 279 | 280 |
| 280 if (is_ios) { | 281 if (is_ios) { |
| 281 sources -= [ "user_agent.cc" ] | 282 sources -= [ "user_agent.cc" ] |
| 282 assert(false, "Need to add lots of conditions here") | 283 assert(false, "Need to add lots of conditions here") |
| 283 } | 284 } |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 | 545 |
| 545 import_dirs = [ "//mojo/services" ] | 546 import_dirs = [ "//mojo/services" ] |
| 546 | 547 |
| 547 deps = [ | 548 deps = [ |
| 548 "//content/public/common:mojo_bindings", | 549 "//content/public/common:mojo_bindings", |
| 549 "//mojo/application/public/interfaces", | 550 "//mojo/application/public/interfaces", |
| 550 "//skia/public/interfaces", | 551 "//skia/public/interfaces", |
| 551 "//ui/mojo/geometry:interfaces", | 552 "//ui/mojo/geometry:interfaces", |
| 552 ] | 553 ] |
| 553 } | 554 } |
| OLD | NEW |