| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'protoc_out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out', | 7 'protoc_out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out', |
| 8 }, | 8 }, |
| 9 'target_defaults': { | 9 'target_defaults': { |
| 10 'include_dirs': [ | 10 'include_dirs': [ |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 'conditions': [ | 23 'conditions': [ |
| 24 ['OS!="win" or component=="static_library"', { | 24 ['OS!="win" or component=="static_library"', { |
| 25 'defines': [ | 25 'defines': [ |
| 26 'U_STATIC_IMPLEMENTATION', | 26 'U_STATIC_IMPLEMENTATION', |
| 27 ], | 27 ], |
| 28 }], | 28 }], |
| 29 ], | 29 ], |
| 30 }, | 30 }, |
| 31 'targets': [{ | 31 'targets': [{ |
| 32 'target_name': 'libphonenumber', | 32 'target_name': 'libphonenumber', |
| 33 'type': '<(library)', | 33 'type': 'static_library', |
| 34 'dependencies': [ | 34 'dependencies': [ |
| 35 '../icu/icu.gyp:icui18n', | 35 '../icu/icu.gyp:icui18n', |
| 36 '../icu/icu.gyp:icuuc', | 36 '../icu/icu.gyp:icuuc', |
| 37 '../protobuf/protobuf.gyp:protobuf_lite', | 37 '../protobuf/protobuf.gyp:protobuf_lite', |
| 38 '../../base/base.gyp:base', | 38 '../../base/base.gyp:base', |
| 39 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynami
c_annotations', | 39 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynami
c_annotations', |
| 40 'phonenumber_proto', | 40 'phonenumber_proto', |
| 41 ], | 41 ], |
| 42 'sources': [ | 42 'sources': [ |
| 43 'chrome/regexp_adapter_icuregexp.cc', | 43 'chrome/regexp_adapter_icuregexp.cc', |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 ], | 130 ], |
| 131 'conditions': [ | 131 'conditions': [ |
| 132 ['OS=="win"', { | 132 ['OS=="win"', { |
| 133 'action': [ | 133 'action': [ |
| 134 '/wo4309', | 134 '/wo4309', |
| 135 ], | 135 ], |
| 136 }], | 136 }], |
| 137 ], | 137 ], |
| 138 }] | 138 }] |
| 139 } | 139 } |
| OLD | NEW |