Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(215)

Side by Side Diff: extensions/common/api/api.gyp

Issue 437883002: Make the root_namespace argument to json_schema_compiler.gypi a string (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: un-escape %% for windows Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //extensions/common/api 8 # GN version: //extensions/common/api
9 'target_name': 'extensions_api', 9 'target_name': 'extensions_api',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 'usb.idl', 43 'usb.idl',
44 ], 44 ],
45 }, { 45 }, {
46 # TODO: Eliminate these on Android. See crbug.com/305852. 46 # TODO: Eliminate these on Android. See crbug.com/305852.
47 'schema_files': [ 47 'schema_files': [
48 'runtime.json', 48 'runtime.json',
49 ], 49 ],
50 }], 50 }],
51 ], 51 ],
52 'cc_dir': 'extensions/common/api', 52 'cc_dir': 'extensions/common/api',
53 'root_namespace': 'extensions::core_api', 53 'root_namespace': 'extensions::core_api::%(namespace)s',
54 'impl_dir': 'extensions/browser/api', 54 'impl_dir': 'extensions/browser/api',
55 }, 55 },
56 'conditions': [ 56 'conditions': [
57 ['enable_extensions==1', { 57 ['enable_extensions==1', {
58 'dependencies': [ 58 'dependencies': [
59 '<(DEPTH)/device/serial/serial.gyp:device_serial', 59 '<(DEPTH)/device/serial/serial.gyp:device_serial',
60 '<(DEPTH)/skia/skia.gyp:skia', 60 '<(DEPTH)/skia/skia.gyp:skia',
61 ], 61 ],
62 }], 62 }],
63 ], 63 ],
64 }, 64 },
65 ], 65 ],
66 } 66 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698