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", |
87 ], ".") | 89 ], ".") |
88 | 90 |
89 # Non-iOS deps. | 91 # Non-iOS deps. |
90 deps += [ | 92 deps += [ |
91 "//cc", | 93 "//cc", |
92 "//cc/surfaces", | 94 "//cc/surfaces", |
93 "//content/app/resources", | 95 "//content/app/resources", |
94 "//content/app/strings", | 96 "//content/app/strings", |
95 "//content/browser/devtools:resources", | 97 "//content/browser/devtools:resources", |
96 "//content/common:mojo_bindings", | 98 "//content/common:mojo_bindings", |
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
412 | 414 |
413 if (enable_browser_cdms) { | 415 if (enable_browser_cdms) { |
414 sources += [ | 416 sources += [ |
415 "media/cdm/browser_cdm_manager.cc", | 417 "media/cdm/browser_cdm_manager.cc", |
416 "media/cdm/browser_cdm_manager.h", | 418 "media/cdm/browser_cdm_manager.h", |
417 "media/media_web_contents_observer.cc", | 419 "media/media_web_contents_observer.cc", |
418 "media/media_web_contents_observer.h", | 420 "media/media_web_contents_observer.h", |
419 ] | 421 ] |
420 } | 422 } |
421 } | 423 } |
OLD | NEW |