| 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 979 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 990 proto_library("delta_file_proto") { | 990 proto_library("delta_file_proto") { |
| 991 sources = [ | 991 sources = [ |
| 992 "android/proto/delta_file.proto", | 992 "android/proto/delta_file.proto", |
| 993 ] | 993 ] |
| 994 } | 994 } |
| 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 "win/chrome_process_finder.cc", |
| 1001 "chrome_process_finder_win.h", | 1001 "win/chrome_process_finder.h", |
| 1002 ] | 1002 ] |
| 1003 deps = [ | 1003 deps = [ |
| 1004 "//base", | 1004 "//base", |
| 1005 "//chrome/common:constants", | 1005 "//chrome/common:constants", |
| 1006 ] | 1006 ] |
| 1007 if (enable_configuration_policy) { | 1007 if (enable_configuration_policy) { |
| 1008 deps += [ "//chrome/browser/policy:path_parser" ] | 1008 deps += [ "//chrome/browser/policy:path_parser" ] |
| 1009 } | 1009 } |
| 1010 } | 1010 } |
| 1011 } | 1011 } |
| (...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1365 # linking all of the test support. | 1365 # linking all of the test support. |
| 1366 source_set("pepper_cdm_test_constants") { | 1366 source_set("pepper_cdm_test_constants") { |
| 1367 testonly = true | 1367 testonly = true |
| 1368 visibility = [ "//chrome/*" ] | 1368 visibility = [ "//chrome/*" ] |
| 1369 sources = [ | 1369 sources = [ |
| 1370 "media/pepper_cdm_test_constants.cc", | 1370 "media/pepper_cdm_test_constants.cc", |
| 1371 "media/pepper_cdm_test_constants.h", | 1371 "media/pepper_cdm_test_constants.h", |
| 1372 ] | 1372 ] |
| 1373 } | 1373 } |
| 1374 } | 1374 } |
| OLD | NEW |