| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'target_defaults': { | 6 'target_defaults': { |
| 7 'variables': { | 7 'variables': { |
| 8 'app_base_target': 0, | 8 'app_base_target': 0, |
| 9 }, | 9 }, |
| 10 'target_conditions': [ | 10 'target_conditions': [ |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 '../ui/base/x/x11_util_internal.h', | 40 '../ui/base/x/x11_util_internal.h', |
| 41 ], | 41 ], |
| 42 }], | 42 }], |
| 43 ], | 43 ], |
| 44 }], | 44 }], |
| 45 ], | 45 ], |
| 46 }, | 46 }, |
| 47 'targets': [ | 47 'targets': [ |
| 48 { | 48 { |
| 49 'target_name': 'app_base', | 49 'target_name': 'app_base', |
| 50 'type': '<(library)', | 50 'type': 'static_library', |
| 51 'msvs_guid': '4631946D-7D5F-44BD-A5A8-504C0A7033BE', | 51 'msvs_guid': '4631946D-7D5F-44BD-A5A8-504C0A7033BE', |
| 52 'variables': { | 52 'variables': { |
| 53 'app_base_target': 1, | 53 'app_base_target': 1, |
| 54 }, | 54 }, |
| 55 'dependencies': [ | 55 'dependencies': [ |
| 56 # app resources and ui_strings should be shared with the 64-bit | 56 # app resources and ui_strings should be shared with the 64-bit |
| 57 # target, but it doesn't work due to a bug in gyp | 57 # target, but it doesn't work due to a bug in gyp |
| 58 '../base/base.gyp:base', | 58 '../base/base.gyp:base', |
| 59 '../base/base.gyp:base_i18n', | 59 '../base/base.gyp:base_i18n', |
| 60 '../base/base.gyp:base_static', | 60 '../base/base.gyp:base_static', |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 ], | 317 ], |
| 318 }], | 318 }], |
| 319 ], | 319 ], |
| 320 }, | 320 }, |
| 321 ], | 321 ], |
| 322 'conditions': [ | 322 'conditions': [ |
| 323 ['OS=="win"', { | 323 ['OS=="win"', { |
| 324 'targets': [ | 324 'targets': [ |
| 325 { | 325 { |
| 326 'target_name': 'app_base_nacl_win64', | 326 'target_name': 'app_base_nacl_win64', |
| 327 'type': '<(library)', | 327 'type': 'static_library', |
| 328 'msvs_guid': '4987C6F9-B230-48E5-BF91-418EAE69AD90', | 328 'msvs_guid': '4987C6F9-B230-48E5-BF91-418EAE69AD90', |
| 329 'dependencies': [ | 329 'dependencies': [ |
| 330 # app resources and ui_strings should be shared with the 32-bit | 330 # app resources and ui_strings should be shared with the 32-bit |
| 331 # target, but it doesn't work due to a bug in gyp | 331 # target, but it doesn't work due to a bug in gyp |
| 332 'app_resources', | 332 'app_resources', |
| 333 '../base/base.gyp:base_nacl_win64', | 333 '../base/base.gyp:base_nacl_win64', |
| 334 '../ui/base/strings/ui_strings.gyp:ui_strings', | 334 '../ui/base/strings/ui_strings.gyp:ui_strings', |
| 335 ], | 335 ], |
| 336 'variables': { | 336 'variables': { |
| 337 'app_base_target': 1, | 337 'app_base_target': 1, |
| (...skipping 22 matching lines...) Expand all Loading... |
| 360 'configurations': { | 360 'configurations': { |
| 361 'Common_Base': { | 361 'Common_Base': { |
| 362 'msvs_target_platform': 'x64', | 362 'msvs_target_platform': 'x64', |
| 363 }, | 363 }, |
| 364 }, | 364 }, |
| 365 }, | 365 }, |
| 366 ], | 366 ], |
| 367 }], | 367 }], |
| 368 ], | 368 ], |
| 369 } | 369 } |
| OLD | NEW |