| 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': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 # Private target only used in components/autofill. | 8 # Private target only used in components/autofill. |
| 9 'target_name': 'autofill_regexes', | 9 'target_name': 'autofill_regexes', |
| 10 'type': 'none', | 10 'type': 'none', |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 'include_dirs': [ | 262 'include_dirs': [ |
| 263 '..', | 263 '..', |
| 264 ], | 264 ], |
| 265 'dependencies': [ | 265 'dependencies': [ |
| 266 'autofill_common', | 266 'autofill_common', |
| 267 '../base/base.gyp:base', | 267 '../base/base.gyp:base', |
| 268 '../content/content.gyp:content_renderer', | 268 '../content/content.gyp:content_renderer', |
| 269 '../content/content.gyp:content_common', | 269 '../content/content.gyp:content_common', |
| 270 '../ipc/ipc.gyp:ipc', | 270 '../ipc/ipc.gyp:ipc', |
| 271 '../skia/skia.gyp:skia', | 271 '../skia/skia.gyp:skia', |
| 272 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi', |
| 272 | 273 |
| 273 'component_resources.gyp:component_resources', | 274 'component_resources.gyp:component_resources', |
| 274 ], | 275 ], |
| 275 'sources': [ | 276 'sources': [ |
| 276 'autofill/renderer/autofill_agent.cc', | 277 'autofill/renderer/autofill_agent.cc', |
| 277 'autofill/renderer/autofill_agent.h', | 278 'autofill/renderer/autofill_agent.h', |
| 278 'autofill/renderer/form_autofill_util.cc', | 279 'autofill/renderer/form_autofill_util.cc', |
| 279 'autofill/renderer/form_autofill_util.h', | 280 'autofill/renderer/form_autofill_util.h', |
| 280 'autofill/renderer/form_cache.cc', | 281 'autofill/renderer/form_cache.cc', |
| 281 'autofill/renderer/form_cache.h', | 282 'autofill/renderer/form_cache.h', |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 ], | 315 ], |
| 315 'variables': { | 316 'variables': { |
| 316 'jni_gen_package': 'autofill', | 317 'jni_gen_package': 'autofill', |
| 317 }, | 318 }, |
| 318 'includes': [ '../build/jni_generator.gypi' ], | 319 'includes': [ '../build/jni_generator.gypi' ], |
| 319 }, | 320 }, |
| 320 ], | 321 ], |
| 321 }], | 322 }], |
| 322 ], | 323 ], |
| 323 } | 324 } |
| OLD | NEW |