| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', | 8 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', |
| 9 }, | 9 }, |
| 10 | 10 |
| 11 'targets': [ | 11 'targets': [ |
| 12 { | 12 { |
| 13 'target_name': 'ash', | 13 'target_name': 'ash', |
| 14 'type': '<(component)', | 14 'type': '<(component)', |
| 15 'dependencies': [ | 15 'dependencies': [ |
| 16 'ash_strings', |
| 16 '../base/base.gyp:base', | 17 '../base/base.gyp:base', |
| 17 '../base/base.gyp:base_i18n', | 18 '../base/base.gyp:base_i18n', |
| 18 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 19 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 19 '../build/temp_gyp/googleurl.gyp:googleurl', | 20 '../build/temp_gyp/googleurl.gyp:googleurl', |
| 20 '../net/net.gyp:net', | 21 '../net/net.gyp:net', |
| 21 '../skia/skia.gyp:skia', | 22 '../skia/skia.gyp:skia', |
| 22 '../third_party/icu/icu.gyp:icui18n', | 23 '../third_party/icu/icu.gyp:icui18n', |
| 23 '../third_party/icu/icu.gyp:icuuc', | 24 '../third_party/icu/icu.gyp:icuuc', |
| 24 '../ui/aura/aura.gyp:aura', | 25 '../ui/aura/aura.gyp:aura', |
| 25 '../ui/base/strings/ui_strings.gyp:ui_strings', | 26 '../ui/base/strings/ui_strings.gyp:ui_strings', |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 ], | 314 ], |
| 314 'mac_bundle_resources!': [ | 315 'mac_bundle_resources!': [ |
| 315 'shell/cocoa/app-Info.plist', | 316 'shell/cocoa/app-Info.plist', |
| 316 ], | 317 ], |
| 317 'xcode_settings': { | 318 'xcode_settings': { |
| 318 'INFOPLIST_FILE': 'shell/cocoa/app-Info.plist', | 319 'INFOPLIST_FILE': 'shell/cocoa/app-Info.plist', |
| 319 }, | 320 }, |
| 320 }], | 321 }], |
| 321 ], | 322 ], |
| 322 }, | 323 }, |
| 324 { |
| 325 'target_name': 'ash_strings', |
| 326 'type': 'none', |
| 327 'actions': [ |
| 328 # Localizable resources. |
| 329 { |
| 330 'action_name': 'ash_strings', |
| 331 'variables': { |
| 332 'grit_grd_file': 'ash_strings.grd', |
| 333 }, |
| 334 'includes': [ '../build/grit_action.gypi' ], |
| 335 }, |
| 336 ], |
| 337 'includes': [ '../build/grit_target.gypi' ], |
| 338 }, |
| 323 ], | 339 ], |
| 324 } | 340 } |
| OLD | NEW |