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 'widevine_cdm_version_h_file%': 'widevine_cdm_version.h', | 7 'widevine_cdm_version_h_file%': 'widevine_cdm_version.h', |
8 'widevine_cdm_binary_files%': [], | 8 'widevine_cdm_binary_files%': [], |
9 'conditions': [ | 9 'conditions': [ |
10 [ 'branding == "Chrome"', { | 10 [ 'branding == "Chrome"', { |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 ], | 47 ], |
48 }, | 48 }, |
49 'includes': [ | 49 'includes': [ |
50 '../../../build/util/version.gypi', | 50 '../../../build/util/version.gypi', |
51 ], | 51 ], |
52 | 52 |
53 # Always provide a target, so we can put the logic about whether there's | 53 # Always provide a target, so we can put the logic about whether there's |
54 # anything to be done in this file (instead of a higher-level .gyp file). | 54 # anything to be done in this file (instead of a higher-level .gyp file). |
55 'targets': [ | 55 'targets': [ |
56 { | 56 { |
| 57 # GN version: //third_party/widevine/cdm:adapter_resources |
57 'target_name': 'widevinecdmadapter_resources', | 58 'target_name': 'widevinecdmadapter_resources', |
58 'type': 'none', | 59 'type': 'none', |
59 'conditions': [ | 60 'conditions': [ |
60 ['branding == "Chrome"', { | 61 ['branding == "Chrome"', { |
61 'variables': { | 62 'variables': { |
62 'branding_path': '../../../chrome/app/theme/google_chrome/BRANDING', | 63 'branding_path': '../../../chrome/app/theme/google_chrome/BRANDING', |
63 }, | 64 }, |
64 }, { # else branding!="Chrome" | 65 }, { # else branding!="Chrome" |
65 'variables': { | 66 'variables': { |
66 'branding_path': '../../../chrome/app/theme/chromium/BRANDING', | 67 'branding_path': '../../../chrome/app/theme/chromium/BRANDING', |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 'conditions': [ | 154 'conditions': [ |
154 [ 'branding == "Chrome" and OS == "linux"', { | 155 [ 'branding == "Chrome" and OS == "linux"', { |
155 'dependencies': [ | 156 'dependencies': [ |
156 '<(DEPTH)/third_party/widevine/test/license_server/license_server.gy
p:test_license_server', | 157 '<(DEPTH)/third_party/widevine/test/license_server/license_server.gy
p:test_license_server', |
157 ], | 158 ], |
158 }], | 159 }], |
159 ], | 160 ], |
160 }, | 161 }, |
161 ], | 162 ], |
162 } | 163 } |
OLD | NEW |