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