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", | |
88 ], ".") | 86 ], ".") |
89 | 87 |
90 # Non-iOS deps. | 88 # Non-iOS deps. |
91 deps += [ | 89 deps += [ |
92 "//cc", | 90 "//cc", |
93 "//cc/surfaces", | 91 "//cc/surfaces", |
94 "//content/app/resources", | 92 "//content/app/resources", |
95 "//content/app/strings", | 93 "//content/app/strings", |
96 "//content/browser/devtools:resources", | 94 "//content/browser/devtools:resources", |
97 "//content/common:mojo_bindings", | 95 "//content/common:mojo_bindings", |
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
406 deps += [ | 404 deps += [ |
407 "//third_party/flac", | 405 "//third_party/flac", |
408 "//third_party/speex", | 406 "//third_party/speex", |
409 ] | 407 ] |
410 } | 408 } |
411 | 409 |
412 if (is_linux && use_dbus) { | 410 if (is_linux && use_dbus) { |
413 deps += [ "//dbus" ] | 411 deps += [ "//dbus" ] |
414 } | 412 } |
415 } | 413 } |
OLD | NEW |