| 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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 } | 285 } |
| 286 if (is_win || is_mac || is_desktop_linux) { | 286 if (is_win || is_mac || is_desktop_linux) { |
| 287 sources += rebase_path(gypi_values.chrome_browser_policy_desktop_sources, | 287 sources += rebase_path(gypi_values.chrome_browser_policy_desktop_sources, |
| 288 ".", "//chrome") | 288 ".", "//chrome") |
| 289 } | 289 } |
| 290 if (is_android || is_ios) { | 290 if (is_android || is_ios) { |
| 291 sources += rebase_path(gypi_values.chrome_browser_mobile_sources, | 291 sources += rebase_path(gypi_values.chrome_browser_mobile_sources, |
| 292 ".", "//chrome") | 292 ".", "//chrome") |
| 293 } else { # Non-mobile | 293 } else { # Non-mobile |
| 294 deps += [ | 294 deps += [ |
| 295 #"policy_path_parser", TODO(GYP) | 295 "//chrome/browser/policy:path_parser", |
| 296 ] | 296 ] |
| 297 } | 297 } |
| 298 } else { | 298 } else { |
| 299 # Configuration policy disabled. | 299 # Configuration policy disabled. |
| 300 sources += rebase_path(gypi_values.chrome_browser_policy_disabled_sources, | 300 sources += rebase_path(gypi_values.chrome_browser_policy_disabled_sources, |
| 301 ".", "//chrome") | 301 ".", "//chrome") |
| 302 } | 302 } |
| 303 | 303 |
| 304 if (enable_plugins) { | 304 if (enable_plugins) { |
| 305 sources += rebase_path(gypi_values.chrome_browser_plugins_sources, | 305 sources += rebase_path(gypi_values.chrome_browser_plugins_sources, |
| (...skipping 355 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 |