| 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/browser/browser.gni") | 7 import("//content/browser/browser.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 | 9 |
| 10 source_set("browser") { | 10 source_set("browser") { |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 "//crypto", | 55 "//crypto", |
| 56 "//device/battery", | 56 "//device/battery", |
| 57 "//device/bluetooth", | 57 "//device/bluetooth", |
| 58 "//device/vibration", | 58 "//device/vibration", |
| 59 "//gin", | 59 "//gin", |
| 60 "//google_apis", | 60 "//google_apis", |
| 61 "//gpu", | 61 "//gpu", |
| 62 "//gpu/command_buffer/client:gles2_implementation", | 62 "//gpu/command_buffer/client:gles2_implementation", |
| 63 "//ipc/mojo", | 63 "//ipc/mojo", |
| 64 "//media", | 64 "//media", |
| 65 "//media:media", |
| 65 "//media/midi", | 66 "//media/midi", |
| 66 "//mojo/common", | 67 "//mojo/common", |
| 67 "//mojo/common:url_type_converters", | 68 "//mojo/common:url_type_converters", |
| 68 "//mojo/converters/geometry", | 69 "//mojo/converters/geometry", |
| 69 "//mojo/public/cpp/bindings", | 70 "//mojo/public/cpp/bindings", |
| 70 "//mojo/public/js", | 71 "//mojo/public/js", |
| 71 "//net", | 72 "//net", |
| 72 "//net:extras", | 73 "//net:extras", |
| 73 "//services/shell", | 74 "//services/shell", |
| 74 "//services/shell/public/cpp:cpp_for_chromium", | 75 "//services/shell/public/cpp:cpp_for_chromium", |
| (...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 519 | 520 |
| 520 # See comment at the top of //content/BUILD.gn for how this works. | 521 # See comment at the top of //content/BUILD.gn for how this works. |
| 521 group("for_content_tests") { | 522 group("for_content_tests") { |
| 522 visibility = [ "//content/test/*" ] | 523 visibility = [ "//content/test/*" ] |
| 523 if (!is_component_build) { | 524 if (!is_component_build) { |
| 524 public_deps = [ | 525 public_deps = [ |
| 525 ":browser", | 526 ":browser", |
| 526 ] | 527 ] |
| 527 } | 528 } |
| 528 } | 529 } |
| OLD | NEW |