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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 ], | 325 ], |
325 'mac_bundle_resources!': [ | 326 'mac_bundle_resources!': [ |
326 'shell/cocoa/app-Info.plist', | 327 'shell/cocoa/app-Info.plist', |
327 ], | 328 ], |
328 'xcode_settings': { | 329 'xcode_settings': { |
329 'INFOPLIST_FILE': 'shell/cocoa/app-Info.plist', | 330 'INFOPLIST_FILE': 'shell/cocoa/app-Info.plist', |
330 }, | 331 }, |
331 }], | 332 }], |
332 ], | 333 ], |
333 }, | 334 }, |
| 335 { |
| 336 'target_name': 'ash_strings', |
| 337 'type': 'none', |
| 338 'actions': [ |
| 339 # Localizable resources. |
| 340 { |
| 341 'action_name': 'ash_strings', |
| 342 'variables': { |
| 343 'grit_grd_file': 'ash_strings.grd', |
| 344 }, |
| 345 'includes': [ '../build/grit_action.gypi' ], |
| 346 }, |
| 347 ], |
| 348 'includes': [ '../build/grit_target.gypi' ], |
| 349 }, |
334 ], | 350 ], |
335 } | 351 } |
OLD | NEW |