OLD | NEW |
(Empty) | |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 { |
| 5 'variables': { |
| 6 'chromium_code': 1, |
| 7 }, |
| 8 'targets': [ |
| 9 { |
| 10 'target_name': 'views_content_client', |
| 11 'type': '<(component)', |
| 12 'dependencies': [ |
| 13 '../../base/base.gyp:base', |
| 14 '../../base/base.gyp:base_i18n', |
| 15 '../../content/content.gyp:content', |
| 16 '../../content/content_shell_and_tests.gyp:content_shell_lib', |
| 17 '../../third_party/icu/icu.gyp:icui18n', |
| 18 '../../third_party/icu/icu.gyp:icuuc', |
| 19 '../aura/aura.gyp:aura', |
| 20 '../base/ui_base.gyp:ui_base', |
| 21 '../events/events.gyp:events', |
| 22 '../gfx/gfx.gyp:gfx', |
| 23 '../gfx/gfx.gyp:gfx_geometry', |
| 24 '../resources/ui_resources.gyp:ui_resources', |
| 25 '../resources/ui_resources.gyp:ui_test_pak', |
| 26 '../views/views.gyp:views', |
| 27 '../views/views.gyp:views_test_support', |
| 28 ], |
| 29 'defines': [ |
| 30 'VIEWS_CONTENT_CLIENT_IMPLEMENTATION', |
| 31 ], |
| 32 'sources': [ |
| 33 'views_content_browser_client.cc', |
| 34 'views_content_browser_client.h', |
| 35 'views_content_client.cc', |
| 36 'views_content_client.h', |
| 37 'views_content_client_export.h', |
| 38 'views_content_client_main_parts.cc', |
| 39 'views_content_client_main_parts.h', |
| 40 'views_content_main_delegate.cc', |
| 41 ], |
| 42 }, # target_name: views_content_client |
| 43 ], |
| 44 } |
OLD | NEW |