| 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("//media/media_options.gni") | 7 import("//media/media_options.gni") |
| 8 import("//ppapi/features/features.gni") | 8 import("//ppapi/features/features.gni") |
| 9 import("//printing/features/features.gni") | 9 import("//printing/features/features.gni") |
| 10 import("//third_party/WebKit/public/public_features.gni") | 10 import("//third_party/WebKit/public/public_features.gni") |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 sources = [ | 160 sources = [ |
| 161 # devtools_protocol_dispatcher.* is generated by | 161 # devtools_protocol_dispatcher.* is generated by |
| 162 # //content/browser/devtools:gen_devtools_protocol_handler. | 162 # //content/browser/devtools:gen_devtools_protocol_handler. |
| 163 "$root_gen_dir/content/browser/devtools/protocol/devtools_protocol_dispatche
r.cc", | 163 "$root_gen_dir/content/browser/devtools/protocol/devtools_protocol_dispatche
r.cc", |
| 164 "$root_gen_dir/content/browser/devtools/protocol/devtools_protocol_dispatche
r.h", | 164 "$root_gen_dir/content/browser/devtools/protocol/devtools_protocol_dispatche
r.h", |
| 165 "$target_gen_dir/devtools/protocol/dom.cc", | 165 "$target_gen_dir/devtools/protocol/dom.cc", |
| 166 "$target_gen_dir/devtools/protocol/dom.h", | 166 "$target_gen_dir/devtools/protocol/dom.h", |
| 167 "$target_gen_dir/devtools/protocol/emulation.cc", | 167 "$target_gen_dir/devtools/protocol/emulation.cc", |
| 168 "$target_gen_dir/devtools/protocol/emulation.h", | 168 "$target_gen_dir/devtools/protocol/emulation.h", |
| 169 "$target_gen_dir/devtools/protocol/forward.h", | 169 "$target_gen_dir/devtools/protocol/forward.h", |
| 170 "$target_gen_dir/devtools/protocol/input.cc", |
| 171 "$target_gen_dir/devtools/protocol/input.h", |
| 170 "$target_gen_dir/devtools/protocol/inspector.cc", | 172 "$target_gen_dir/devtools/protocol/inspector.cc", |
| 171 "$target_gen_dir/devtools/protocol/inspector.h", | 173 "$target_gen_dir/devtools/protocol/inspector.h", |
| 172 "$target_gen_dir/devtools/protocol/io.cc", | 174 "$target_gen_dir/devtools/protocol/io.cc", |
| 173 "$target_gen_dir/devtools/protocol/io.h", | 175 "$target_gen_dir/devtools/protocol/io.h", |
| 174 "$target_gen_dir/devtools/protocol/memory.cc", | 176 "$target_gen_dir/devtools/protocol/memory.cc", |
| 175 "$target_gen_dir/devtools/protocol/memory.h", | 177 "$target_gen_dir/devtools/protocol/memory.h", |
| 176 "$target_gen_dir/devtools/protocol/network.cc", | 178 "$target_gen_dir/devtools/protocol/network.cc", |
| 177 "$target_gen_dir/devtools/protocol/network.h", | 179 "$target_gen_dir/devtools/protocol/network.h", |
| 178 "$target_gen_dir/devtools/protocol/page.cc", | 180 "$target_gen_dir/devtools/protocol/page.cc", |
| 179 "$target_gen_dir/devtools/protocol/page.h", | 181 "$target_gen_dir/devtools/protocol/page.h", |
| (...skipping 1802 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1982 if (!is_component_build) { | 1984 if (!is_component_build) { |
| 1983 public_deps = [ | 1985 public_deps = [ |
| 1984 ":browser", | 1986 ":browser", |
| 1985 ] | 1987 ] |
| 1986 } else { | 1988 } else { |
| 1987 public_deps = [ | 1989 public_deps = [ |
| 1988 "//third_party/leveldatabase", | 1990 "//third_party/leveldatabase", |
| 1989 ] | 1991 ] |
| 1990 } | 1992 } |
| 1991 } | 1993 } |
| OLD | NEW |