| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 'wm/window_overview_mode.cc', | 45 'wm/window_overview_mode.cc', |
| 46 'wm/window_overview_mode.h', | 46 'wm/window_overview_mode.h', |
| 47 ], | 47 ], |
| 48 }, | 48 }, |
| 49 { | 49 { |
| 50 'target_name': 'athena_content_lib', | 50 'target_name': 'athena_content_lib', |
| 51 'type': '<(component)', | 51 'type': '<(component)', |
| 52 'dependencies': [ | 52 'dependencies': [ |
| 53 'athena_lib', | 53 'athena_lib', |
| 54 '../content/content.gyp:content_browser', | 54 '../content/content.gyp:content_browser', |
| 55 '../ui/views/controls/webview/webview.gyp:webview', |
| 56 '../skia/skia.gyp:skia', |
| 55 ], | 57 ], |
| 56 'defines': [ | 58 'defines': [ |
| 57 'ATHENA_IMPLEMENTATION', | 59 'ATHENA_IMPLEMENTATION', |
| 58 ], | 60 ], |
| 59 'sources': [ | 61 'sources': [ |
| 60 'content/public/content_activity_factory.h', | 62 'content/public/content_activity_factory.h', |
| 61 'content/content_activity_factory.cc', | 63 'content/content_activity_factory.cc', |
| 62 'content/web_activity.h', | 64 'content/web_activity.h', |
| 63 'content/web_activity.cc', | 65 'content/web_activity.cc', |
| 64 ], | 66 ], |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 { | 99 { |
| 98 'target_name': 'athena_unittests', | 100 'target_name': 'athena_unittests', |
| 99 'type': 'executable', | 101 'type': 'executable', |
| 100 'dependencies': [ | 102 'dependencies': [ |
| 101 '../testing/gtest.gyp:gtest', | 103 '../testing/gtest.gyp:gtest', |
| 102 'athena_lib', | 104 'athena_lib', |
| 103 'athena_test_support', | 105 'athena_test_support', |
| 104 ], | 106 ], |
| 105 'sources': [ | 107 'sources': [ |
| 106 'test/athena_unittests.cc', | 108 'test/athena_unittests.cc', |
| 109 'activity/activity_manager_unittest.cc', |
| 107 'wm/window_manager_unittest.cc', | 110 'wm/window_manager_unittest.cc', |
| 108 ], | 111 ], |
| 109 } | 112 } |
| 110 ], | 113 ], |
| 111 } | 114 } |
| 112 | 115 |
| OLD | NEW |