| 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("//chrome/common/features.gni") | 9 import("//chrome/common/features.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 984 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 995 } | 995 } |
| 996 | 996 |
| 997 if (is_win) { | 997 if (is_win) { |
| 998 source_set("chrome_process_finder") { | 998 source_set("chrome_process_finder") { |
| 999 sources = [ | 999 sources = [ |
| 1000 "chrome_process_finder_win.cc", | 1000 "chrome_process_finder_win.cc", |
| 1001 "chrome_process_finder_win.h", | 1001 "chrome_process_finder_win.h", |
| 1002 ] | 1002 ] |
| 1003 deps = [ | 1003 deps = [ |
| 1004 "//base", | 1004 "//base", |
| 1005 "//chrome/browser/metro_utils", | |
| 1006 "//chrome/common:constants", | 1005 "//chrome/common:constants", |
| 1007 ] | 1006 ] |
| 1008 if (enable_configuration_policy) { | 1007 if (enable_configuration_policy) { |
| 1009 deps += [ "//chrome/browser/policy:path_parser" ] | 1008 deps += [ "//chrome/browser/policy:path_parser" ] |
| 1010 } | 1009 } |
| 1011 } | 1010 } |
| 1012 } | 1011 } |
| 1013 | 1012 |
| 1014 # GYP version: chrome/chrome_resources.gyp:chrome_resources | 1013 # GYP version: chrome/chrome_resources.gyp:chrome_resources |
| 1015 # (generate_browser_resources action) | 1014 # (generate_browser_resources action) |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1331 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1330 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
| 1332 deps = [ | 1331 deps = [ |
| 1333 "//components/google/core/browser", | 1332 "//components/google/core/browser", |
| 1334 "//components/omnibox/browser", | 1333 "//components/omnibox/browser", |
| 1335 "//components/rlz", | 1334 "//components/rlz", |
| 1336 "//components/search_engines", | 1335 "//components/search_engines", |
| 1337 "//rlz:rlz_lib", | 1336 "//rlz:rlz_lib", |
| 1338 ] | 1337 ] |
| 1339 } | 1338 } |
| 1340 } | 1339 } |
| OLD | NEW |