Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 'targets': [ | |
| 7 { | |
| 8 'target_name': 'autofill_regexes', | |
| 9 'type': 'none', | |
| 10 'actions': [{ | |
| 11 'action_name': 'autofill_regexes', | |
| 12 'inputs': [ | |
| 13 '<(DEPTH)/build/escape_unicode.py', | |
| 14 'autofill/browser/autofill_regex_constants.cc.utf8', | |
|
Ilya Sherman
2013/03/09 00:48:20
Does this path need to be updated?
| |
| 15 ], | |
| 16 'outputs': [ | |
| 17 '<(SHARED_INTERMEDIATE_DIR)/autofill_regex_constants.cc', | |
| 18 ], | |
| 19 'action': ['python', '<(DEPTH)/build/escape_unicode.py', | |
| 20 '-o', '<(SHARED_INTERMEDIATE_DIR)', | |
| 21 'autofill/browser/autofill_regex_constants.cc.utf8'], | |
|
Ilya Sherman
2013/03/09 00:48:20
Ditto
| |
| 22 }], | |
| 23 }, | |
| 24 { | |
| 25 # Protobuf compiler / generate rule for Autofill's risk integration. | |
| 26 'target_name': 'autofill_risk_proto', | |
| 27 'type': 'static_library', | |
| 28 'sources': [ | |
| 29 'autofill/browser/risk/proto/fingerprint.proto', | |
|
Ilya Sherman
2013/03/09 00:48:20
Does this path need to be udpated?
| |
| 30 ], | |
| 31 'variables': { | |
| 32 'proto_in_dir': 'autofill/browser/risk/proto', | |
|
Ilya Sherman
2013/03/09 00:48:20
Ditto.
| |
| 33 'proto_out_dir': 'components/autofill/browser/risk/proto', | |
| 34 }, | |
| 35 'includes': [ '../build/protoc.gypi' ] | |
| 36 }, | |
| 37 ], | |
| 6 'conditions': [ | 38 'conditions': [ |
| 7 ['OS != "ios"', { | 39 ['OS != "ios"', { |
| 8 'targets': [ | 40 'targets': [ |
| 9 { | 41 { |
| 10 'target_name': 'autofill_common', | 42 'target_name': 'autofill_common', |
| 11 'type': 'static_library', | 43 'type': 'static_library', |
| 12 'include_dirs': [ | 44 'include_dirs': [ |
| 13 '..', | 45 '..', |
| 14 ], | 46 ], |
| 15 'dependencies': [ | 47 'dependencies': [ |
| (...skipping 24 matching lines...) Expand all Loading... | |
| 40 'autofill/common/password_form_fill_data.cc', | 72 'autofill/common/password_form_fill_data.cc', |
| 41 'autofill/common/password_form_fill_data.h', | 73 'autofill/common/password_form_fill_data.h', |
| 42 'autofill/common/web_element_descriptor.cc', | 74 'autofill/common/web_element_descriptor.cc', |
| 43 'autofill/common/web_element_descriptor.h', | 75 'autofill/common/web_element_descriptor.h', |
| 44 ], | 76 ], |
| 45 }, | 77 }, |
| 46 ], | 78 ], |
| 47 }], | 79 }], |
| 48 ], | 80 ], |
| 49 } | 81 } |
| OLD | NEW |