Chromium Code Reviews| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//chrome/common/features.gni") | 6 import("//chrome/common/features.gni") |
| 7 import("//chrome/version.gni") | 7 import("//chrome/version.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
| 10 | 10 |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 146 ] | 146 ] |
| 147 } | 147 } |
| 148 | 148 |
| 149 if (enable_extensions) { | 149 if (enable_extensions) { |
| 150 sources += rebase_path(gypi_values.chrome_common_extensions_sources, | 150 sources += rebase_path(gypi_values.chrome_common_extensions_sources, |
| 151 ".", | 151 ".", |
| 152 "//chrome") | 152 "//chrome") |
| 153 public_deps += [ | 153 public_deps += [ |
| 154 "//chrome/common/extensions/api", | 154 "//chrome/common/extensions/api", |
| 155 "//chrome/common/extensions/api:extensions_features", | 155 "//chrome/common/extensions/api:extensions_features", |
| 156 "//device/generic_sensor", | |
|
jochen (gone - plz use gerrit)
2016/08/29 09:28:25
why is this needed?
shalamov
2016/08/29 10:37:53
Thanks for pointing out, forgot to remove those af
| |
| 156 "//device/usb", | 157 "//device/usb", |
| 157 "//extensions:extensions_resources", | 158 "//extensions:extensions_resources", |
| 158 "//extensions/common", | 159 "//extensions/common", |
| 159 "//extensions/common/api", | 160 "//extensions/common/api", |
| 160 "//extensions/strings", | 161 "//extensions/strings", |
| 161 "//media/cast:net", | 162 "//media/cast:net", |
| 162 ] | 163 ] |
| 163 if (is_chromeos) { | 164 if (is_chromeos) { |
| 164 sources += | 165 sources += |
| 165 rebase_path(gypi_values.chrome_common_extensions_chromeos_sources, | 166 rebase_path(gypi_values.chrome_common_extensions_chromeos_sources, |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 419 "resource_usage_reporter.mojom", | 420 "resource_usage_reporter.mojom", |
| 420 "shell_handler_win.mojom", | 421 "shell_handler_win.mojom", |
| 421 ] | 422 ] |
| 422 | 423 |
| 423 public_deps = [ | 424 public_deps = [ |
| 424 "//skia/public/interfaces", | 425 "//skia/public/interfaces", |
| 425 ] | 426 ] |
| 426 | 427 |
| 427 use_new_wrapper_types = false | 428 use_new_wrapper_types = false |
| 428 } | 429 } |
| OLD | NEW |