| 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 }, | 8 }, |
| 9 | 9 |
| 10 'includes': [ | 10 'includes': [ |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 'targets': [ | 64 'targets': [ |
| 65 { | 65 { |
| 66 'target_name': 'common_constants', | 66 'target_name': 'common_constants', |
| 67 'type': 'static_library', | 67 'type': 'static_library', |
| 68 'include_dirs': [ | 68 'include_dirs': [ |
| 69 '<(SHARED_INTERMEDIATE_DIR)', # Needed by chrome_paths.cc. | 69 '<(SHARED_INTERMEDIATE_DIR)', # Needed by chrome_paths.cc. |
| 70 ], | 70 ], |
| 71 'dependencies': [ | 71 'dependencies': [ |
| 72 '../base/base.gyp:base', | 72 '../base/base.gyp:base', |
| 73 '../components/nacl_common.gyp:nacl_switches', | 73 '../components/nacl_common.gyp:nacl_switches', |
| 74 '../content/content.gyp:content_common', |
| 74 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h', | 75 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h', |
| 75 ], | 76 ], |
| 76 'target_conditions': [ | 77 'target_conditions': [ |
| 77 ['OS=="ios"', { | 78 ['OS=="ios"', { |
| 78 # iOS needs chrome_paths_mac, which is excluded by filename rules; | 79 # iOS needs chrome_paths_mac, which is excluded by filename rules; |
| 79 # re-add it in target_conditionals so it's after that exclusion. | 80 # re-add it in target_conditionals so it's after that exclusion. |
| 80 'sources/': [ | 81 'sources/': [ |
| 81 ['include', '^common/chrome_paths_mac\\.mm$'], | 82 ['include', '^common/chrome_paths_mac\\.mm$'], |
| 82 ], | 83 ], |
| 83 }], | 84 }], |
| (...skipping 26 matching lines...) Expand all Loading... |
| 110 'configurations': { | 111 'configurations': { |
| 111 'Common_Base': { | 112 'Common_Base': { |
| 112 'msvs_target_platform': 'x64', | 113 'msvs_target_platform': 'x64', |
| 113 }, | 114 }, |
| 114 }, | 115 }, |
| 115 }, | 116 }, |
| 116 ], | 117 ], |
| 117 }], | 118 }], |
| 118 ], | 119 ], |
| 119 } | 120 } |
| OLD | NEW |