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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 # Need this annoying rebase_path call to match what happened with the | 77 # Need this annoying rebase_path call to match what happened with the |
78 # sources. | 78 # sources. |
79 sources -= rebase_path([ | 79 sources -= rebase_path([ |
80 "$root_gen_dir/webkit/grit/devtools_resources.h", | 80 "$root_gen_dir/webkit/grit/devtools_resources.h", |
81 "$root_gen_dir/webkit/grit/devtools_resources_map.cc", | 81 "$root_gen_dir/webkit/grit/devtools_resources_map.cc", |
82 "$root_gen_dir/webkit/grit/devtools_resources_map.h", | 82 "$root_gen_dir/webkit/grit/devtools_resources_map.h", |
83 "$root_gen_dir/content/browser/tracing/grit/tracing_resources.h", | 83 "$root_gen_dir/content/browser/tracing/grit/tracing_resources.h", |
84 "$root_gen_dir/ui/resources/grit/webui_resources_map.cc", | 84 "$root_gen_dir/ui/resources/grit/webui_resources_map.cc", |
85 "$root_gen_dir/content/browser/devtools/devtools_protocol_constants.cc", | 85 "$root_gen_dir/content/browser/devtools/devtools_protocol_constants.cc", |
86 "$root_gen_dir/content/browser/devtools/devtools_protocol_constants.h", | 86 "$root_gen_dir/content/browser/devtools/devtools_protocol_constants.h", |
87 "$root_gen_dir/content/browser/devtools/protocol/devtools_protocol_handler
_impl.cc", | |
88 "$root_gen_dir/content/browser/devtools/protocol/devtools_protocol_handler
_impl.h", | |
89 ], ".") | 87 ], ".") |
90 | 88 |
91 # Non-iOS deps. | 89 # Non-iOS deps. |
92 deps += [ | 90 deps += [ |
93 "//cc", | 91 "//cc", |
94 "//cc/surfaces", | 92 "//cc/surfaces", |
95 "//content/app/resources", | 93 "//content/app/resources", |
96 "//content/app/strings", | 94 "//content/app/strings", |
97 "//content/browser/devtools:resources", | 95 "//content/browser/devtools:resources", |
98 "//content/common:mojo_bindings", | 96 "//content/common:mojo_bindings", |
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
414 | 412 |
415 if (enable_browser_cdms) { | 413 if (enable_browser_cdms) { |
416 sources += [ | 414 sources += [ |
417 "media/cdm/browser_cdm_manager.cc", | 415 "media/cdm/browser_cdm_manager.cc", |
418 "media/cdm/browser_cdm_manager.h", | 416 "media/cdm/browser_cdm_manager.h", |
419 "media/media_web_contents_observer.cc", | 417 "media/media_web_contents_observer.cc", |
420 "media/media_web_contents_observer.h", | 418 "media/media_web_contents_observer.h", |
421 ] | 419 ] |
422 } | 420 } |
423 } | 421 } |
OLD | NEW |