| 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("//tools/grit/grit_rule.gni") | 5 import("//tools/grit/grit_rule.gni") |
| 6 | 6 |
| 7 # TODO(GYP) uncomment when this is used below. | 7 # TODO(GYP) uncomment when this is used below. |
| 8 #gypi_values = exec_script( | 8 #gypi_values = exec_script( |
| 9 # "//build/gypi_to_gn.py", | 9 # "//build/gypi_to_gn.py", |
| 10 # [ rebase_path("../chrome_common.gypi") ], | 10 # [ rebase_path("../chrome_common.gypi") ], |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 "//chrome/common/metrics/proto", | 44 "//chrome/common/metrics/proto", |
| 45 "//chrome/common/net", | 45 "//chrome/common/net", |
| 46 #"//components/cloud_devices:common", TODO(GYP) | 46 #"//components/cloud_devices:common", TODO(GYP) |
| 47 #"//components/json_schema", TODO(GYP) | 47 #"//components/json_schema", TODO(GYP) |
| 48 "//components/metrics", | 48 "//components/metrics", |
| 49 #"//components/components.gyp:policy_component_common", TODO(GYP) | 49 #"//components/components.gyp:policy_component_common", TODO(GYP) |
| 50 "//components/translate:translate_core_common", | 50 "//components/translate:translate_core_common", |
| 51 #"//components/variations", TODO(GYP) | 51 #"//components/variations", TODO(GYP) |
| 52 "//content/public/common", | 52 "//content/public/common", |
| 53 "//crypto", | 53 "//crypto", |
| 54 #"//extensions/extensions_resources.gyp:extensions_resources", TODO(GYP) | 54 "//extensions:extensions_resources", |
| 55 #"//extensions/extensions_strings.gyp:extensions_strings", TODO(GYP) | 55 "//extensions/strings", |
| 56 #"//media/cast/cast.gyp:cast_transport", TODO(GYP) | 56 #"//media/cast/cast.gyp:cast_transport", TODO(GYP) |
| 57 "//net", | 57 "//net", |
| 58 "//skia", | 58 "//skia", |
| 59 "//third_party/icu", | 59 "//third_party/icu", |
| 60 "//third_party/libxml", | 60 "//third_party/libxml", |
| 61 "//third_party/sqlite", | 61 "//third_party/sqlite", |
| 62 "//third_party/zlib:zip", | 62 "//third_party/zlib:zip", |
| 63 "//ui/resources:resources", | 63 "//ui/resources:resources", |
| 64 "//url", | 64 "//url", |
| 65 ] | 65 ] |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 "net/test_server_locations.cc", | 124 "net/test_server_locations.cc", |
| 125 "net/test_server_locations.h", | 125 "net/test_server_locations.h", |
| 126 "pref_font_script_names-inl.h", | 126 "pref_font_script_names-inl.h", |
| 127 "pref_font_webkit_names.h", | 127 "pref_font_webkit_names.h", |
| 128 "pref_names.cc", | 128 "pref_names.cc", |
| 129 "pref_names.h", | 129 "pref_names.h", |
| 130 "widevine_cdm_constants.cc", | 130 "widevine_cdm_constants.cc", |
| 131 "widevine_cdm_constants.h", | 131 "widevine_cdm_constants.h", |
| 132 ] | 132 ] |
| 133 | 133 |
| 134 # TODO(GYP) remove when widevine is supported for real. | |
| 135 configs += [ "//content:widevine_stub_config" ] | |
| 136 | |
| 137 deps = [ | 134 deps = [ |
| 138 "//base", | 135 "//base", |
| 139 "//base/third_party/dynamic_annotations", | 136 "//base/third_party/dynamic_annotations", |
| 137 "//third_party/widevine/cdm:version_h", |
| 140 # TODO(GYP) | 138 # TODO(GYP) |
| 141 #'../components/components.gyp:bookmarks_common', | 139 #'../components/components.gyp:bookmarks_common', |
| 142 #'../components/nacl.gyp:nacl_switches', | 140 #'../components/nacl.gyp:nacl_switches', |
| 143 #'../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h', | |
| 144 # (Also see widevine config above.) | |
| 145 ] | 141 ] |
| 146 } | 142 } |
| OLD | NEW |