| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
| 10 | 10 |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 if (!is_android && !is_ios && enable_configuration_policy) { | 377 if (!is_android && !is_ios && enable_configuration_policy) { |
| 378 sources += [ | 378 sources += [ |
| 379 "download/download_dir_policy_handler.cc", | 379 "download/download_dir_policy_handler.cc", |
| 380 "download/download_dir_policy_handler.h", | 380 "download/download_dir_policy_handler.h", |
| 381 ] | 381 ] |
| 382 } | 382 } |
| 383 if (is_mac) { | 383 if (is_mac) { |
| 384 sources += | 384 sources += |
| 385 rebase_path(gypi_values.chrome_browser_mac_sources, ".", "//chrome") | 385 rebase_path(gypi_values.chrome_browser_mac_sources, ".", "//chrome") |
| 386 deps += [ | 386 deps += [ |
| 387 #"app_shim" TODO(GYP) bug 512600 | 387 "//chrome/app_shim", |
| 388 #"browser_app_shim" TODO(GYP) bug 512600 | 388 "//chrome/browser/apps/app_shim", |
| 389 ] | 389 ] |
| 390 } | 390 } |
| 391 if (is_mac || is_android) { | 391 if (is_mac || is_android) { |
| 392 sources += rebase_path( | 392 sources += rebase_path( |
| 393 gypi_values.chrome_browser_password_manager_mac_android_sources, | 393 gypi_values.chrome_browser_password_manager_mac_android_sources, |
| 394 ".", | 394 ".", |
| 395 "//chrome") | 395 "//chrome") |
| 396 } | 396 } |
| 397 if (enable_extensions) { | 397 if (enable_extensions) { |
| 398 public_deps += [ "//chrome/browser/extensions" ] | 398 public_deps += [ "//chrome/browser/extensions" ] |
| (...skipping 855 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1254 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1254 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
| 1255 deps = [ | 1255 deps = [ |
| 1256 "//components/google/core/browser", | 1256 "//components/google/core/browser", |
| 1257 "//components/omnibox/browser", | 1257 "//components/omnibox/browser", |
| 1258 "//components/rlz", | 1258 "//components/rlz", |
| 1259 "//components/search_engines", | 1259 "//components/search_engines", |
| 1260 "//rlz:rlz_lib", | 1260 "//rlz:rlz_lib", |
| 1261 ] | 1261 ] |
| 1262 } | 1262 } |
| 1263 } | 1263 } |
| OLD | NEW |