| 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 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 deps = [ | 353 deps = [ |
| 354 # This looks needless as we have :mojo_bindings in public_deps, but it's | 354 # This looks needless as we have :mojo_bindings in public_deps, but it's |
| 355 # needed because of allow_circular_includes_from. | 355 # needed because of allow_circular_includes_from. |
| 356 ":mojo_bindings_cpp_sources", | 356 ":mojo_bindings_cpp_sources", |
| 357 "//base", | 357 "//base", |
| 358 "//base/third_party/dynamic_annotations", | 358 "//base/third_party/dynamic_annotations", |
| 359 "//build/util:webkit_version", | 359 "//build/util:webkit_version", |
| 360 "//cc/ipc", | 360 "//cc/ipc", |
| 361 "//cc/surfaces", | 361 "//cc/surfaces", |
| 362 "//components/discardable_memory/common", | 362 "//components/discardable_memory/common", |
| 363 "//components/payments:payment_app", |
| 363 "//components/tracing", | 364 "//components/tracing", |
| 364 "//components/tracing:startup_tracing", | 365 "//components/tracing:startup_tracing", |
| 365 "//content:resources", | 366 "//content:resources", |
| 366 "//content/app/resources", | 367 "//content/app/resources", |
| 367 "//device/base/synchronization", | 368 "//device/base/synchronization", |
| 368 "//device/bluetooth", | 369 "//device/bluetooth", |
| 369 "//gpu", | 370 "//gpu", |
| 370 "//gpu/command_buffer/client:gles2_c_lib", | 371 "//gpu/command_buffer/client:gles2_c_lib", |
| 371 "//gpu/command_buffer/client:gles2_cmd_helper", | 372 "//gpu/command_buffer/client:gles2_cmd_helper", |
| 372 "//gpu/command_buffer/client:gles2_implementation", | 373 "//gpu/command_buffer/client:gles2_implementation", |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 608 "//ui/gfx/geometry/mojo", | 609 "//ui/gfx/geometry/mojo", |
| 609 "//ui/gfx/mojo", | 610 "//ui/gfx/mojo", |
| 610 "//url/mojo:url_mojom_gurl", | 611 "//url/mojo:url_mojom_gurl", |
| 611 "//url/mojo:url_mojom_origin", | 612 "//url/mojo:url_mojom_origin", |
| 612 ] | 613 ] |
| 613 | 614 |
| 614 export_class_attribute = "CONTENT_EXPORT" | 615 export_class_attribute = "CONTENT_EXPORT" |
| 615 export_define = "CONTENT_IMPLEMENTATION=1" | 616 export_define = "CONTENT_IMPLEMENTATION=1" |
| 616 export_header = "content/common/content_export.h" | 617 export_header = "content/common/content_export.h" |
| 617 } | 618 } |
| OLD | NEW |