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/crypto.gni") | 5 import("//build/config/crypto.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//components/nacl/nacl_defines.gni") | 8 import("//components/nacl/nacl_defines.gni") |
9 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
10 | 10 |
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 } | 284 } |
285 if (is_win || is_mac || is_desktop_linux) { | 285 if (is_win || is_mac || is_desktop_linux) { |
286 sources += rebase_path(gypi_values.chrome_browser_policy_desktop_sources, | 286 sources += rebase_path(gypi_values.chrome_browser_policy_desktop_sources, |
287 ".", "//chrome") | 287 ".", "//chrome") |
288 } | 288 } |
289 if (is_android || is_ios) { | 289 if (is_android || is_ios) { |
290 sources += rebase_path(gypi_values.chrome_browser_mobile_sources, | 290 sources += rebase_path(gypi_values.chrome_browser_mobile_sources, |
291 ".", "//chrome") | 291 ".", "//chrome") |
292 } else { # Non-mobile | 292 } else { # Non-mobile |
293 deps += [ | 293 deps += [ |
294 #"policy_path_parser", TODO(GYP) | 294 "//chrome/browser/policy:path_parser", |
295 ] | 295 ] |
296 } | 296 } |
297 } else { | 297 } else { |
298 # Configuration policy disabled. | 298 # Configuration policy disabled. |
299 sources += rebase_path(gypi_values.chrome_browser_policy_disabled_sources, | 299 sources += rebase_path(gypi_values.chrome_browser_policy_disabled_sources, |
300 ".", "//chrome") | 300 ".", "//chrome") |
301 } | 301 } |
302 | 302 |
303 if (enable_plugins) { | 303 if (enable_plugins) { |
304 sources += rebase_path(gypi_values.chrome_browser_plugins_sources, | 304 sources += rebase_path(gypi_values.chrome_browser_plugins_sources, |
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
661 # TODO(GYP) write internal action | 661 # TODO(GYP) write internal action |
662 if (false) { #if (is_chrome_branded) { | 662 if (false) { #if (is_chrome_branded) { |
663 action("chrome_internal_resources_gen") { | 663 action("chrome_internal_resources_gen") { |
664 # TODO(GYP) | 664 # TODO(GYP) |
665 } | 665 } |
666 } else { | 666 } else { |
667 group("chrome_internal_resources_gen") { | 667 group("chrome_internal_resources_gen") { |
668 # Empty placeholder. | 668 # Empty placeholder. |
669 } | 669 } |
670 } | 670 } |
OLD | NEW |