OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 'common_constants_sources': [ | 8 'common_constants_sources': [ |
9 'common/chrome_constants.cc', | 9 'common/chrome_constants.cc', |
10 'common/chrome_constants.h', | 10 'common/chrome_constants.h', |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 ], | 80 ], |
81 'include_dirs': [ | 81 'include_dirs': [ |
82 '<(SHARED_INTERMEDIATE_DIR)', # Needed by chrome_paths.cc. | 82 '<(SHARED_INTERMEDIATE_DIR)', # Needed by chrome_paths.cc. |
83 ], | 83 ], |
84 'dependencies': [ | 84 'dependencies': [ |
85 'version_header', | 85 'version_header', |
86 'chrome_features.gyp:chrome_common_features', | 86 'chrome_features.gyp:chrome_common_features', |
87 '../base/base.gyp:base', | 87 '../base/base.gyp:base', |
88 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 88 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
89 '../components/components.gyp:bookmarks_common', | 89 '../components/components.gyp:bookmarks_common', |
| 90 '../media/media.gyp:cdm_paths', # Needed by chrome_paths.cc. |
90 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h', | 91 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h', |
91 ], | 92 ], |
92 'target_conditions': [ | 93 'target_conditions': [ |
93 ['OS=="ios"', { | 94 ['OS=="ios"', { |
94 # iOS needs chrome_paths_mac, which is excluded by filename rules; | 95 # iOS needs chrome_paths_mac, which is excluded by filename rules; |
95 # re-add it in target_conditionals so it's after that exclusion. | 96 # re-add it in target_conditionals so it's after that exclusion. |
96 'sources/': [ | 97 'sources/': [ |
97 ['include', '^common/chrome_paths_mac\\.mm$'], | 98 ['include', '^common/chrome_paths_mac\\.mm$'], |
98 ], | 99 ], |
99 }], | 100 }], |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 'configurations': { | 136 'configurations': { |
136 'Common_Base': { | 137 'Common_Base': { |
137 'msvs_target_platform': 'x64', | 138 'msvs_target_platform': 'x64', |
138 }, | 139 }, |
139 }, | 140 }, |
140 }, | 141 }, |
141 ], | 142 ], |
142 }], | 143 }], |
143 ], | 144 ], |
144 } | 145 } |
OLD | NEW |