| 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 | 8 |
| 9 source_set("browser") { | 9 source_set("browser") { |
| 10 # Only the public target should depend on this. All other targets (even | 10 # Only the public target should depend on this. All other targets (even |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 # Need this annoying rebase_path call to match what happened with the | 76 # Need this annoying rebase_path call to match what happened with the |
| 77 # sources. | 77 # sources. |
| 78 sources -= rebase_path([ | 78 sources -= rebase_path([ |
| 79 "$root_gen_dir/webkit/grit/devtools_resources.h", | 79 "$root_gen_dir/webkit/grit/devtools_resources.h", |
| 80 "$root_gen_dir/webkit/grit/devtools_resources_map.cc", | 80 "$root_gen_dir/webkit/grit/devtools_resources_map.cc", |
| 81 "$root_gen_dir/webkit/grit/devtools_resources_map.h", | 81 "$root_gen_dir/webkit/grit/devtools_resources_map.h", |
| 82 "$root_gen_dir/content/browser/tracing/grit/tracing_resources.h", | 82 "$root_gen_dir/content/browser/tracing/grit/tracing_resources.h", |
| 83 "$root_gen_dir/ui/resources/grit/webui_resources_map.cc", | 83 "$root_gen_dir/ui/resources/grit/webui_resources_map.cc", |
| 84 "$root_gen_dir/content/browser/devtools/devtools_protocol_constants.cc", | 84 "$root_gen_dir/content/browser/devtools/devtools_protocol_constants.cc", |
| 85 "$root_gen_dir/content/browser/devtools/devtools_protocol_constants.h", | 85 "$root_gen_dir/content/browser/devtools/devtools_protocol_constants.h", |
| 86 "$root_gen_dir/content/browser/devtools/protocol/devtools_protocol_handler
_impl.cc", |
| 87 "$root_gen_dir/content/browser/devtools/protocol/devtools_protocol_handler
_impl.h", |
| 86 ], ".") | 88 ], ".") |
| 87 | 89 |
| 88 # Non-iOS deps. | 90 # Non-iOS deps. |
| 89 deps += [ | 91 deps += [ |
| 90 "//cc", | 92 "//cc", |
| 91 "//cc/surfaces", | 93 "//cc/surfaces", |
| 92 "//content/app/resources", | 94 "//content/app/resources", |
| 93 "//content/app/strings", | 95 "//content/app/strings", |
| 94 "//content/browser/devtools:resources", | 96 "//content/browser/devtools:resources", |
| 95 "//content/common:mojo_bindings", | 97 "//content/common:mojo_bindings", |
| (...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 deps += [ | 409 deps += [ |
| 408 "//third_party/flac", | 410 "//third_party/flac", |
| 409 "//third_party/speex", | 411 "//third_party/speex", |
| 410 ] | 412 ] |
| 411 } | 413 } |
| 412 | 414 |
| 413 if (is_linux && use_dbus) { | 415 if (is_linux && use_dbus) { |
| 414 deps += [ "//dbus" ] | 416 deps += [ "//dbus" ] |
| 415 } | 417 } |
| 416 } | 418 } |
| OLD | NEW |