| 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("//media/media_options.gni") | 7 import("//media/media_options.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 import("//ppapi/features/features.gni") | 9 import("//ppapi/features/features.gni") |
| 10 import("//sandbox/features.gni") | 10 import("//sandbox/features.gni") |
| (...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 ] | 342 ] |
| 343 | 343 |
| 344 public_deps = [ | 344 public_deps = [ |
| 345 ":mojo_bindings", | 345 ":mojo_bindings", |
| 346 "//cc", | 346 "//cc", |
| 347 "//gpu/command_buffer/common", | 347 "//gpu/command_buffer/common", |
| 348 "//ipc", | 348 "//ipc", |
| 349 "//third_party/WebKit/public:blink_headers", | 349 "//third_party/WebKit/public:blink_headers", |
| 350 ] | 350 ] |
| 351 deps = [ | 351 deps = [ |
| 352 # This looks needless as we have :mojo_bindings in public_deps, but it's | |
| 353 # needed because of allow_circular_includes_from. | |
| 354 ":mojo_bindings_cpp_sources", | |
| 355 "//base", | 352 "//base", |
| 356 "//base/third_party/dynamic_annotations", | 353 "//base/third_party/dynamic_annotations", |
| 357 "//build/util:webkit_version", | 354 "//build/util:webkit_version", |
| 358 "//cc/ipc", | 355 "//cc/ipc", |
| 359 "//cc/surfaces", | 356 "//cc/surfaces", |
| 360 "//components/discardable_memory/common", | 357 "//components/discardable_memory/common", |
| 361 "//components/tracing", | 358 "//components/tracing", |
| 362 "//components/tracing:startup_tracing", | 359 "//components/tracing:startup_tracing", |
| 363 "//content:resources", | 360 "//content:resources", |
| 364 "//content/app/resources", | 361 "//content/app/resources", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 377 "//ipc", | 374 "//ipc", |
| 378 "//ipc:mojom", | 375 "//ipc:mojom", |
| 379 "//media", | 376 "//media", |
| 380 "//media:shared_memory_support", | 377 "//media:shared_memory_support", |
| 381 "//media/base/ipc", | 378 "//media/base/ipc", |
| 382 "//media/capture", | 379 "//media/capture", |
| 383 "//media/capture/ipc", | 380 "//media/capture/ipc", |
| 384 "//media/gpu/ipc/client", | 381 "//media/gpu/ipc/client", |
| 385 "//media/gpu/ipc/common", | 382 "//media/gpu/ipc/common", |
| 386 "//media/midi", | 383 "//media/midi", |
| 387 "//media/midi:mojo_cpp_sources", | 384 "//media/midi:mojo", |
| 388 "//mojo/common:common_base", | 385 "//mojo/common:common_base", |
| 389 "//mojo/edk/system", | 386 "//mojo/edk/system", |
| 390 "//net", | 387 "//net", |
| 391 "//ppapi/features", | 388 "//ppapi/features", |
| 392 "//sandbox", | 389 "//sandbox", |
| 393 "//sandbox:sandbox_features", | 390 "//sandbox:sandbox_features", |
| 394 "//services/service_manager", | 391 "//services/service_manager", |
| 395 "//services/service_manager/public/cpp", | 392 "//services/service_manager/public/cpp", |
| 396 "//services/service_manager/public/interfaces", | 393 "//services/service_manager/public/interfaces", |
| 397 "//services/service_manager/runner/common", | 394 "//services/service_manager/runner/common", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 420 "//ui/shell_dialogs", | 417 "//ui/shell_dialogs", |
| 421 "//url", | 418 "//url", |
| 422 "//url/ipc:url_ipc", | 419 "//url/ipc:url_ipc", |
| 423 ] | 420 ] |
| 424 | 421 |
| 425 defines = [] | 422 defines = [] |
| 426 include_dirs = [] | 423 include_dirs = [] |
| 427 libs = [] | 424 libs = [] |
| 428 ldflags = [] | 425 ldflags = [] |
| 429 | 426 |
| 430 allow_circular_includes_from = [ ":mojo_bindings_cpp_sources" ] | 427 allow_circular_includes_from = [ ":mojo_bindings" ] |
| 431 | 428 |
| 432 if (is_android && use_seccomp_bpf) { | 429 if (is_android && use_seccomp_bpf) { |
| 433 set_sources_assignment_filter([]) | 430 set_sources_assignment_filter([]) |
| 434 sources += [ | 431 sources += [ |
| 435 "sandbox_linux/sandbox_bpf_base_policy_linux.cc", | 432 "sandbox_linux/sandbox_bpf_base_policy_linux.cc", |
| 436 "sandbox_linux/sandbox_bpf_base_policy_linux.h", | 433 "sandbox_linux/sandbox_bpf_base_policy_linux.h", |
| 437 ] | 434 ] |
| 438 set_sources_assignment_filter(sources_assignment_filter) | 435 set_sources_assignment_filter(sources_assignment_filter) |
| 439 } | 436 } |
| 440 | 437 |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 606 "//ui/gfx/geometry/mojo", | 603 "//ui/gfx/geometry/mojo", |
| 607 "//ui/gfx/mojo", | 604 "//ui/gfx/mojo", |
| 608 "//url/mojo:url_mojom_gurl", | 605 "//url/mojo:url_mojom_gurl", |
| 609 "//url/mojo:url_mojom_origin", | 606 "//url/mojo:url_mojom_origin", |
| 610 ] | 607 ] |
| 611 | 608 |
| 612 export_class_attribute = "CONTENT_EXPORT" | 609 export_class_attribute = "CONTENT_EXPORT" |
| 613 export_define = "CONTENT_IMPLEMENTATION=1" | 610 export_define = "CONTENT_IMPLEMENTATION=1" |
| 614 export_header = "content/common/content_export.h" | 611 export_header = "content/common/content_export.h" |
| 615 } | 612 } |
| OLD | NEW |