| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 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 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 }, | 7 }, |
| 8 'includes': [ |
| 9 '../build/win_precompile.gypi', |
| 10 '../chrome/version.gypi', |
| 11 ], |
| 8 'targets': [ | 12 'targets': [ |
| 9 { | 13 { |
| 10 'target_name': 'ios_provider_web', | 14 'target_name': 'chrome_elf', |
| 11 'type': 'none', | 15 'type': 'shared_library', |
| 12 'include_dirs': [ | 16 'include_dirs': [ |
| 13 '..', | 17 '..', |
| 14 ], | 18 ], |
| 15 'sources': [ | 19 'sources': [ |
| 16 'public/provider/web/web_state.h', | 20 'chrome_elf.def', |
| 17 'public/provider/web/web_state_user_data.h', | 21 'chrome_elf_main.cc', |
| 18 ], | 22 'chrome_elf_main.h', |
| 19 'dependencies': [ | |
| 20 'ios_base.gyp:ios_consumer_base', | |
| 21 ], | 23 ], |
| 22 }, | 24 }, |
| 23 ], | 25 ], |
| 24 } | 26 } |
| OLD | NEW |